repo.or.cz
/
aesalon.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Started implementing the Informer module again.
[aesalon.git]
/
src
/
SConscript
blob
c1e99b1f0245de993a489f94b9f0e36c6d58b98f
1
Import("env")
2
3
dirglob = Glob("*/SConscript", strings=True)
4
5
# Construct linking path first . . .
6
for path in dirglob:
7
dirname = path[:path.find('/')]
8
env.Append(LIBPATH = ["#.build/" + dirname])
9
# print env.Dump("LIBPATH")
10
11
for path in dirglob:
12
SConscript(path)
13
14
#print env.Dump()