source: inundation/mesh_engine/SConscript @ 3282

Last change on this file since 3282 was 3282, checked in by jack, 19 years ago

SCons script files now support all the files that compile_all.py does.

File size: 288 bytes
Line 
1Import('env')
2env2 = env.Copy()
3
4try:
5    env2['CPPDEFINES'] += [('TRILIBRARY', 1), ('NO_TIMER', 1)]
6except KeyError:
7    env2['CPPDEFINES'] = [('TRILIBRARY', 1), ('NO_TIMER', 1)]
8
9env2.SharedLibrary('triang', ['triangle.c', 'triang.c'])
10env2.SharedLibrary('triangle', ['triangle.c'])
11
12
13
Note: See TracBrowser for help on using the repository browser.