Changeset 11256 for trunk/gsdl/lib


Ignore:
Timestamp:
2006-02-15T14:36:10+13:00 (18 years ago)
Author:
mdewsnip
Message:

Added a "GSDL_VC4" option that has to be specified with the nmake command when using Visual C++ 4. This is used to determine whether "-GX" (Visual C++ 4) or "-EHsc" (Visual C++ 6/Visual Studio 2005) is specified as a command-line option to the compiler.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/lib/win32.mak

    r11253 r11256  
    2626
    2727GSDLHOME = ..
     28GSDL_VC4 = 0
    2829USE_STLPORT = 0
    2930LOCAL_LIBRARY = 0
     
    3536CC = cl
    3637
     38!IF $(GSDL_VC4)
    3739CPPFLAGS = -GX
     40!ELSE
     41CPPFLAGS = -EHsc
     42!ENDIF
     43
    3844!IF $(DLL)
    3945CPPFLAGS = $(CPPFLAGS) -MD
Note: See TracChangeset for help on using the changeset viewer.