Changeset 136 for cafu/trunk/CompilerSetup.py.tmpl
- Timestamp:
- 08/27/10 11:30:01 (21 months ago)
- Files:
-
- 1 modified
-
cafu/trunk/CompilerSetup.py.tmpl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cafu/trunk/CompilerSetup.py.tmpl
r104 r136 18 18 # 19 19 # TARGET_ARCH sets the target architecture for the Visual C/C++ compiler. 20 # It i tcurrently unused under Linux, where the host architecture determines20 # It is currently unused under Linux, where the host architecture determines 21 21 # the target architecture. Valid values are: 22 22 # "x86" or "i386" for 32 bit builds, … … 25 25 # 26 26 # Examples: 27 # # Auto-detect the latest installed compiler, tools, and target platform. 28 # envCommon=Environment(); 29 # 27 30 # # Print all valid values for MSVC_VERSION on your system. 28 31 # envCommon=Environment(MSVC_VERSION="XXX"); 29 # 32 # 30 33 # # Use Visual C/C++ version 9 (2008), Express Edition. 31 34 # envCommon=Environment(MSVC_VERSION="9.0Exp"); 32 # 35 # 33 36 # # Use the latest Visual C/C++ version for creating 32 bit binaries. 34 37 # envCommon=Environment(TARGET_ARCH="x86"); 35 # 38 # 36 39 # # Use Visual C/C++ version 9 (2008) for creating 32 bit binaries. 37 40 # envCommon=Environment(MSVC_VERSION="9.0", TARGET_ARCH="x86"); … … 50 53 # Example: scons -Q bv=dpr 51 54 buildVariants="dr"; 52 53 54 # These settings specify where the wxWidgets toolkit is found under Windows and55 # Linux. If you followed the instructions in the Cafu documentation at56 # http://www.cafu.de/wiki/, the given default value should be OK for both57 # wxMSW (Windows) and wxGTK (Linux), so there is no need to change it.58 wxMSW_Path="#/ExtLibs/wxWidgets"; # The given value should be OK.59 wxGTK_Path="#/ExtLibs/wxWidgets"; # The given value should be OK.
