Show
Ignore:
Timestamp:
08/27/10 11:30:01 (21 months ago)
Author:
Carsten
Message:

Reintegrated branches/cafu_to_wx back into trunk!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cafu/trunk/CompilerSetup.py.tmpl

    r104 r136  
    1818# 
    1919# TARGET_ARCH sets the target architecture for the Visual C/C++ compiler. 
    20 #   It it currently unused under Linux, where the host architecture determines 
     20#   It is currently unused under Linux, where the host architecture determines 
    2121#   the target architecture. Valid values are: 
    2222#         "x86" or "i386" for 32 bit builds, 
     
    2525# 
    2626# Examples: 
     27#   # Auto-detect the latest installed compiler, tools, and target platform. 
     28#   envCommon=Environment(); 
     29# 
    2730#   # Print all valid values for MSVC_VERSION on your system. 
    2831#   envCommon=Environment(MSVC_VERSION="XXX"); 
    29 #      
     32# 
    3033#   # Use Visual C/C++ version 9 (2008), Express Edition. 
    3134#   envCommon=Environment(MSVC_VERSION="9.0Exp"); 
    32 #      
     35# 
    3336#   # Use the latest Visual C/C++ version for creating 32 bit binaries. 
    3437#   envCommon=Environment(TARGET_ARCH="x86"); 
    35 #      
     38# 
    3639#   # Use Visual C/C++ version 9 (2008) for creating 32 bit binaries. 
    3740#   envCommon=Environment(MSVC_VERSION="9.0", TARGET_ARCH="x86"); 
     
    5053# Example: scons -Q bv=dpr 
    5154buildVariants="dr"; 
    52  
    53  
    54 # These settings specify where the wxWidgets toolkit is found under Windows and 
    55 # Linux. If you followed the instructions in the Cafu documentation at 
    56 # http://www.cafu.de/wiki/, the given default value should be OK for both 
    57 # 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.