-
Notifications
You must be signed in to change notification settings - Fork 0
/
SConstruct
29 lines (25 loc) · 1.19 KB
/
SConstruct
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- python -*-
# Set to False to use local ClanLib instead of global one
if True:
clanLib_env = Environment(LIBPATH=[])
clanLib_env.ParseConfig("pkg-config --cflags --libs " +
"clanCore-1.0 clanDisplay-1.0 clanGL-1.0 clanSignals-1.0 clanGUI-1.0 clanGUIStyleSilver-1.0")
else:
# FIXME: replace the X11 stuff with a proper X11 configure check and
# make them somehow part of the clanlib libraries themself
clanLib_env = Environment(CPPPATH=['../external/clanlib/'],
LIBPATH=['/usr/X11R6/lib/',
'../external/clanlib/'],
LIBS=['clanGUIStyleSilver',
'clanGUI',
'clanGL',
'clanDisplay',
'clanSignals',
'clanCore',
'X11', 'Xmu', 'GL', 'GLU', 'png', 'jpeg', 'Xxf86vm', 'Xi'])
Export('clanLib_env')
# SConscript(['external/clanlib/SConstruct'])
SConscript(['lib/SConscript'])
SConscript(['ruby/SConscript'])
SConscript(['netpanzer/SConscript'])
# EOF #