Show
Ignore:
Timestamp:
08/13/10 22:27:00 (22 months ago)
Author:
Carsten
Message:

This revision implements (much of) the big step of replacing the previous OS layer with wxWidgets, achieving a good deal of the objective of ticket #34:
The Cafu engine runs now as a wxWidgets application! ;-)
The most important loose ends have already been tied up, such as app initialization and mouse and keyboard event forwarding, but there are also many details left that for clarity have been scheduled for separate revisions.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cafu/branches/cafu_to_wx/CompilerSetup.py.tmpl

    r104 r116  
    2727#   # Print all valid values for MSVC_VERSION on your system. 
    2828#   envCommon=Environment(MSVC_VERSION="XXX"); 
    29 #      
     29# 
    3030#   # Use Visual C/C++ version 9 (2008), Express Edition. 
    3131#   envCommon=Environment(MSVC_VERSION="9.0Exp"); 
    32 #      
     32# 
    3333#   # Use the latest Visual C/C++ version for creating 32 bit binaries. 
    3434#   envCommon=Environment(TARGET_ARCH="x86"); 
    35 #      
     35# 
    3636#   # Use Visual C/C++ version 9 (2008) for creating 32 bit binaries. 
    3737#   envCommon=Environment(MSVC_VERSION="9.0", TARGET_ARCH="x86"); 
     
    5050# Example: scons -Q bv=dpr 
    5151buildVariants="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.