Ignore:
Timestamp:
Jul 13, 2006, 1:51:34 PM (19 years ago)
Author:
jack
Message:

Improved Build Process under Windows:

MinGW tools should be favoured over MSVC tools.
CFLAGS variable in build_options.py split into MSVCFLAGS and GCCFLAGS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation/mesh_engine/SConscript

    r3282 r3327  
    11Import('env')
    22env2 = env.Copy()
    3 
    4 try:
    5     env2['CPPDEFINES'] += [('TRILIBRARY', 1), ('NO_TIMER', 1)]
    6 except KeyError:
    7     env2['CPPDEFINES'] = [('TRILIBRARY', 1), ('NO_TIMER', 1)]
     3env2.Append(CPPDEFINES=[('TRILIBRARY', 1), ('NO_TIMER', 1)])
    84
    95env2.SharedLibrary('triang', ['triangle.c', 'triang.c'])
Note: See TracChangeset for help on using the changeset viewer.