started work on a collision grid class to speedup collision detection. Doesn't work...
[supertux.git] / lib / SConscript
1 Import('*')
2
3 libsupertux_src = Glob("app/*.cpp") \
4                 + Glob("audio/*.cpp") \
5                 + Glob("gui/*.cpp") \
6                 + Glob("math/*.cpp") \
7                 + Glob("special/*.cpp") \
8                 + Glob("utils/*.cpp") \
9                 + Glob("video/*.cpp")
10
11 lib = env.Library(
12     target="supertux",
13     source=libsupertux_src
14 )
15 Default(lib)
16