diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2011-04-04 00:01:39 +0200 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2011-04-04 00:01:39 +0200 |
commit | 095be9811eaccd92cee156b4c486fb92b77cdcd2 (patch) | |
tree | 354d6f28f0efd721748c0e052921b443ee86bd79 /SConstruct | |
parent | 61fe986e9ad6d1f26275e2ffd72cae0c2542256c (diff) |
Threaded VBO creation.
A secondary memory-mapped VBO is filled in a separate thread, which
replaces the main VBO when work is done.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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', 'boost_thread']) env.ParseConfig('sdl-config --cflags --libs') env.ParseConfig('pkg-config --cflags --libs SDL_image') env.ParseConfig('pkg-config --cflags --libs ftgl') |