-
Notifications
You must be signed in to change notification settings - Fork 71
/
SConstruct
60 lines (53 loc) · 1.13 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import logging
import os
# Supported build systems.
ENVIRONMENTS = ('gcc', 'clang',)
AddOption(
'--build_with',
choices=ENVIRONMENTS,
default='gcc',
help='Build environment.')
assert GetOption('build_with') in ENVIRONMENTS
# Common build environment.
env = Environment()
env.Append(
CXXFLAGS=[
'-std=c++1y',
'-Wall',
'-g',
],
ENV={
# For running commands.
'PATH': os.environ.get('PATH', ''),
# Enables color output from Clang++.
'TERM': os.environ.get('TERM', ''),
})
LIBS = [
'libglog',
'x11',
]
for lib in LIBS:
env.ParseConfig('pkg-config --cflags --libs %s' % (lib))
# Additional build flags for Clang.
if GetOption('build_with') == 'gcc':
pass
elif GetOption('build_with') == 'clang':
env.Replace(
CXX='clang++')
env.Append(
CXXFLAGS=[
'-stdlib=libc++',
],
LINKFLAGS=[
'-stdlib=libc++',
],
LIBS=[
'-lc++abi',
],
)
else:
logging.fatal('Unsupported build environment \'%s\'', GetOption('build_with'))
# Main program.
env.Program(
'basic_wm',
Glob('*.cpp'))