diff options
author | Vegard Storheil Eriksen <zyp@jvnv.net> | 2010-02-27 23:50:32 +0100 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2010-02-27 23:50:32 +0100 |
commit | 42fcaf7d7d374bdae934b5d9aeb32af964872681 (patch) | |
tree | 1b40bcaac0dff851aee603e221f840827c32acea /SConstruct | |
parent | 77361abc13c02469d41af5d937adf517ac5326b9 (diff) |
Testing model-loading with assimp.
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) |