summaryrefslogtreecommitdiff
path: root/SConscript
blob: 8613407dc1a8d90b91ba10eccabdcf320505d835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Don't call this file explicitly, it is called implicitly by the build rules.

Import('env')
Export('env')

env.SConscript('ld_scripts/SConscript')

env.Append(
	LIB_SOURCES = Glob('*.cpp') + Glob('*/*.cpp'),
)

# vim: syn=python