summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
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)