Started some work on the yeti boss
[supertux.git] / src / SConscript
1 import os
2 Import('*')
3
4 supertux_src = Glob("*.cpp") \
5              + Glob("object/*.cpp") \
6              + Glob("badguy/*.cpp") \
7              + Glob("trigger/*.cpp")
8 app = env.Program(
9     target="supertux",
10     source = supertux_src
11 )
12 AddPostAction(app, "ln -sf $TARGET .")
13 InstallExec(["supertux"])
14
15 Default(app)
16