Changeset 846bcc9


Ignore:
Timestamp:
06/08/2024 07:37:56 PM (3 weeks ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
trunk
Children:
a6d5eae
Parents:
cda5f277
git-author:
Xi Ruoyao <xry111@…> (06/08/2024 01:48:04 PM)
git-committer:
Xi Ruoyao <xry111@…> (06/08/2024 07:37:56 PM)
Message:

Add xinclude for -DCMAKE_SKIP_INSTALL_RPATH explanation and use it

Always use "ON" for this boolean value.

Why does cmake allow too many boolean values (ON/OFF, TRUE/FALSE,
YES/NO) anyway?!

Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • general/graphlib/jasper.xml

    rcda5f277 r846bcc9  
    116116cmake -DCMAKE_INSTALL_PREFIX=/usr    \
    117117      -DCMAKE_BUILD_TYPE=Release     \
    118       -DCMAKE_SKIP_INSTALL_RPATH=YES \
     118      -DCMAKE_SKIP_INSTALL_RPATH=ON \
    119119      -DJAS_ENABLE_DOC=NO            \
    120120      -DALLOW_IN_SOURCE_BUILD=YES    \
     
    138138    <title>Command Explanations</title>
    139139
    140     <para>
    141       <parameter>-DCMAKE_SKIP_INSTALL_RPATH=YES</parameter>: This option
    142       removes embedded library search paths.
    143     </para>
     140    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     141      href="../../xincludes/cmake-skip-install-rpath.xml"/>
    144142
    145143    <para>
  • general/graphlib/opencv.xml

    rcda5f277 r846bcc9  
    187187  <sect2 role="commands">
    188188    <title>Command Explanations</title>
     189
     190    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     191      href="../../xincludes/cmake-skip-install-rpath.xml"/>
    189192
    190193    <para>
  • x/lib/vulkan-loader.xml

    rcda5f277 r846bcc9  
    105105cmake -DCMAKE_INSTALL_PREFIX=/usr       \
    106106      -DCMAKE_BUILD_TYPE=Release        \
    107       -DCMAKE_SKIP_INSTALL_RPATH=TRUE   \
     107      -DCMAKE_SKIP_INSTALL_RPATH=ON     \
    108108      -G Ninja .. &amp;&amp;
    109109ninja</userinput></screen>
     
    121121<screen role="root"><userinput>ninja install</userinput></screen>
    122122
     123  </sect2>
     124
     125  <sect2 role="commands">
     126    <title>Command Explanations</title>
     127
     128    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     129      href="../../xincludes/cmake-skip-install-rpath.xml"/>
    123130  </sect2>
    124131
  • x/lib/webkitgtk.xml

    rcda5f277 r846bcc9  
    283283      is needed to allow the build to complete with enchant-2.x.
    284284    </para> -->
     285
     286    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     287      href="../../xincludes/cmake-skip-install-rpath.xml"/>
    285288
    286289    <para>
Note: See TracChangeset for help on using the changeset viewer.