projects
/
supertux.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
updating Nolok contrib templates
[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
+ Glob("lisp/*.cpp")
11
12
lib = env.Library(
13
target="supertux",
14
source=libsupertux_src
15
)
16
Default(lib)
17