[ci skip] update generated files
[scons.git] / doc / generated / examples / commandline_PackageVariable_1.xml
blob49c6c85c7e79d1f755d308839697ef5d76610960
1 <screen xmlns="http://www.scons.org/dbxsd/v1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.scons.org/dbxsd/v1.0 http://www.scons.org/dbxsd/v1.0/scons.xsd">% <userinput>scons -Q foo.o</userinput>
2 cc -o foo.o -c -DPACKAGE="/opt/location" foo.c
3 % <userinput>scons -Q PACKAGE=/usr/local/location foo.o</userinput>
4 cc -o foo.o -c -DPACKAGE="/usr/local/location" foo.c
5 % <userinput>scons -Q PACKAGE=yes foo.o</userinput>
6 cc -o foo.o -c -DPACKAGE="/opt/location" foo.c
7 % <userinput>scons -Q PACKAGE=no foo.o</userinput>
8 cc -o foo.o -c -DPACKAGE="False" foo.c
9 </screen>