-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
SConstruct
78 lines (63 loc) · 2.59 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!python
import os, subprocess
env = Environment()
opts = Variables([], ARGUMENTS)
# Define our options
opts.Add(EnumVariable('target', "Compilation target", 'debug', ['d', 'debug', 'r', 'release']))
opts.Add(EnumVariable('platform', "Compilation platform", '', ['', 'windows', 'x11', 'linux', 'osx']))
opts.Add(EnumVariable('p', "Compilation target, alias for 'platform'", '', ['', 'windows', 'x11', 'linux', 'osx']))
opts.Add(BoolVariable('fat_binary', "(macOS Only) Produce a fat binary for Intel and Apple Silicon", 'no'))
opts.Add(BoolVariable('use_llvm', "Use the LLVM / Clang compiler", 'no'))
opts.Add(PathVariable('target_path', 'The path where the lib is installed.', 'addons/qodot/bin/'))
# only support 64 at this time..
bits = 64
# Updates the environment with the option variables.
opts.Update(env)
# Process some arguments
if env['use_llvm']:
env['CC'] = 'clang'
env['CXX'] = 'clang++'
if env['p'] != '':
env['platform'] = env['p']
if env['platform'] == '':
print("No valid target platform selected.")
quit();
# Check our platform specifics
if env['platform'] == "osx":
if env['fat_binary']:
archFlags = ['-arch', 'x86_64', '-arch', 'arm64']
else:
archFlags = ['-arch', 'x86_64']
env['target_path'] += 'osx/'
if env['target'] in ('debug', 'd'):
env.Append(CCFLAGS = ['-g','-O2', *archFlags])
env.Append(LINKFLAGS = archFlags)
else:
env.Append(CCFLAGS = ['-g','-O3', *archFlags])
env.Append(LINKFLAGS = archFlags)
elif env['platform'] in ('x11', 'linux'):
env['target_path'] += 'x11/'
if env['target'] in ('debug', 'd'):
env.Append(CCFLAGS = ['-fPIC', '-g3','-Og'])
env.Append(LINKFLAGS = [
'-Wl,-rpath,\'$$ORIGIN\''
])
else:
env.Append(CCFLAGS = ['-fPIC', '-g','-O3'])
env.Append(LINKFLAGS = [
'-Wl,-rpath,\'$$ORIGIN\''
])
elif env['platform'] == "windows":
env['target_path'] += 'win64/'
# This makes sure to keep the session environment variables on windows,
# that way you can run scons in a vs 2017 prompt and it will find all the required tools
env.Append(ENV = os.environ)
env.Append(CCFLAGS = ['-DWIN32', '-D_WIN32', '-D_WINDOWS', '-W3', '-GR', '-D_CRT_SECURE_NO_WARNINGS'])
if env['target'] in ('debug', 'd'):
env.Append(CCFLAGS = ['-EHsc', '-D_DEBUG', '-MDd'])
else:
env.Append(CCFLAGS = ['-O2', '-EHsc', '-DNDEBUG', '-MD'])
# Headers
env.Append(CPPPATH=['libqodot/libmap/src/h'])
env.SConscript("libqodot/libmap/SConscript", exports='env')
env.SConscript("libqodot/SConscript", exports='env')