diff options
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ env = Environment( - LIBS = ['ARgsub_lite', 'ARvideo', 'AR', 'png'], + LIBS = ['ARgsub_lite', 'ARvideo', 'AR', 'assimp'], ) common_sources = ['application.cpp', 'pattern.cpp', 'texture.cpp', 'texturesdl.cpp'] @@ -13,3 +13,5 @@ else: env.Append(LIBS = ['GL', 'GLU', 'SDL', 'SDLmain', 'gstreamer-0.10']) env.Program('foo', ['foo.cpp'] + common_sources) + +env.Program('assimp', ['assimp.cpp'] + common_sources) |