summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@ludwig.cs.unc.edu.cs.unc.edu>2010-11-30 17:51:38 -0500
committerGlenn Elliott <gelliott@ludwig.cs.unc.edu.cs.unc.edu>2010-11-30 17:51:38 -0500
commitb9a423897d0cb04d682f91bccb277915c37761e7 (patch)
tree51e8f8901c92039013c89c035cfef1062555a65a /SConstruct
parentbb7de78222a2c95e8a5c97c3b0400d0bf3d7510e (diff)
Just some stuff for AEDZL.wip-aedzl-revised
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct3
1 files changed, 3 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 377297c..c265d89 100644
--- a/SConstruct
+++ b/SConstruct
@@ -19,9 +19,11 @@ if os != 'Linux':
19# base config 19# base config
20env = Environment( 20env = Environment(
21 CC = 'gcc', 21 CC = 'gcc',
22 CXX = 'g++',
22 CCFLAGS = Split(DEBUG_FLAGS), 23 CCFLAGS = Split(DEBUG_FLAGS),
23 CPPPATH = Split(INCLUDE_DIRS), 24 CPPPATH = Split(INCLUDE_DIRS),
24 CPPDEFINES = '-DMAX_TASKS=%d' % MAX_TASKS, 25 CPPDEFINES = '-DMAX_TASKS=%d' % MAX_TASKS,
26 LIBS = Split('blitz m')
25) 27)
26 28
27# ##################################################################### 29# #####################################################################
@@ -29,3 +31,4 @@ env = Environment(
29common = ['src/load.c', 'src/eheap.c', 'src/util.c'] 31common = ['src/load.c', 'src/eheap.c', 'src/util.c']
30env.Program('st_convert', ['src/st2pl.c'] + common) 32env.Program('st_convert', ['src/st2pl.c'] + common)
31env.Program('st_show', ['src/showst.c'] + common) 33env.Program('st_show', ['src/showst.c'] + common)
34env.Program('st_show2', ['src/showst2.cpp'] + common)