summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index c046bb5..bec2ba8 100644
--- a/SConstruct
+++ b/SConstruct
@@ -8,7 +8,7 @@ AddOption('--release', action = 'store_true')
AddOption('--profiling', action = 'store_true')
env.Append(CPPPATH = ['.'])
-env.Append(LIBS = ['GL', 'GLU'])
+env.Append(LIBS = ['GL', 'GLU', 'noise', 'boost_filesystem'])
env.ParseConfig('sdl-config --cflags --libs')
env.ParseConfig('pkg-config --cflags --libs SDL_image')
env.ParseConfig('pkg-config --cflags --libs ftgl')
@@ -24,6 +24,6 @@ if GetOption('profiling'):
Export('env')
-env.Program('foo', Glob('*.cpp'))
+env.Program('foo', Glob('*.cpp') + ['noiseutils/noiseutils.cpp'])
# vim: syn=python