-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathSConstruct
More file actions
157 lines (124 loc) · 4.79 KB
/
SConstruct
File metadata and controls
157 lines (124 loc) · 4.79 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#!/usr/bin/env python
import os
BINDIR = "bin"
env = SConscript("scripts/SConstruct")
env.PrependENVPath("PATH", os.getenv("PATH"))
opts = env.SetupOptions()
opts.Add(BoolVariable("build_ovsim_tests", "Build the openvic simulation unit tests", env.is_standalone))
opts.Add(BoolVariable("run_ovsim_tests", "Run the openvic simulation unit tests", False))
opts.Add(BoolVariable("build_ovsim_benchmarks", "Build the openvic simulation benchmarks", False))
opts.Add(BoolVariable("run_ovsim_benchmarks", "Run the openvic simulation benchmarks", False))
opts.Add(
BoolVariable(
key="build_ovsim_library",
help="Build the openvic simulation library.",
default=env.get("build_ovsim_library", not env.is_standalone),
)
)
opts.Add(BoolVariable("build_ovsim_headless", "Build the openvic simulation headless executable", env.is_standalone))
env.FinalizeOptions()
env.exposed_includes = []
SConscript("deps/SCsub", "env")
env.openvic_simulation = {}
Default(
env.CommandNoCache(
"src/openvic-simulation/gen/commit_info.gen.hpp",
env.Value(env.get_git_info()),
env.Run(env.git_builder),
name_prefix="sim",
)
)
Default(
env.CommandNoCache(
"src/openvic-simulation/gen/license_info.gen.hpp",
["#COPYRIGHT", "#LICENSE.md"],
env.Run(env.license_builder),
name_prefix="sim",
)
)
Default(
env.CommandNoCache(
"src/openvic-simulation/gen/author_info.gen.hpp",
"#AUTHORS.md",
env.Run(env.author_builder),
name_prefix="sim",
sections={
"Senior Developers": "AUTHORS_SENIOR_DEVELOPERS",
"Developers": "AUTHORS_DEVELOPERS",
"Contributors": "AUTHORS_CONTRIBUTORS",
"Consultants": "AUTHORS_CONSULTANTS",
},
)
)
# For future reference:
# - CCFLAGS are compilation flags shared between C and C++
# - CFLAGS are for C-specific compilation flags
# - CXXFLAGS are for C++-specific compilation flags
# - CPPFLAGS are for pre-processor flags
# - CPPDEFINES are for pre-processor defines
# - LINKFLAGS are for linking flags
# Tweak this if you want to use different folders, or more folders, to store your source code in.
source_path = "src/openvic-simulation"
include_path = "src"
env.Append(CPPPATH=[[env.Dir(p) for p in [source_path, include_path]]])
sources = env.GlobRecursive("*.cpp", [source_path])
env.simulation_sources = sources
suffix = ".{}.{}".format(env["platform"], env["target"])
if env.dev_build:
suffix += ".dev"
if env["precision"] == "double":
suffix += ".double"
suffix += "." + env["arch"]
# Expose it when included from another project
env["suffix"] = suffix
library = None
env["OBJSUFFIX"] = suffix + env["OBJSUFFIX"]
library_name = "libopenvic-simulation{}{}".format(suffix, env["LIBSUFFIX"])
default_args = []
if env["run_ovsim_tests"]:
env["build_ovsim_tests"] = True
if env["run_ovsim_benchmarks"]:
env["build_ovsim_benchmarks"] = True
if env["build_ovsim_tests"] or env["build_ovsim_benchmarks"]:
env["build_ovsim_library"] = True
if env["build_ovsim_library"]:
library = env.StaticLibrary(target=env.File(os.path.join(BINDIR, library_name)), source=sources)
default_args += [library]
env.Append(LIBPATH=[env.Dir(BINDIR)])
env.Prepend(LIBS=[library_name])
env.openvic_simulation["LIBPATH"] = env["LIBPATH"]
env.openvic_simulation["LIBS"] = env["LIBS"]
env.openvic_simulation["INCPATH"] = [env.Dir(include_path)] + env.exposed_includes
headless_program = None
env["PROGSUFFIX"] = suffix + env["PROGSUFFIX"]
if env["build_ovsim_headless"]:
headless_name = "openvic-simulation"
headless_env = env.Clone()
headless_path = ["src/headless"]
headless_env.Append(CPPDEFINES=["OPENVIC_SIM_HEADLESS"])
headless_env.Append(CPPPATH=[headless_env.Dir(headless_path)])
headless_env.headless_sources = env.GlobRecursive("*.cpp", headless_path)
if not env["build_ovsim_library"]:
headless_env.headless_sources += sources
headless_program = headless_env.Program(
target=os.path.join(BINDIR, headless_name),
source=headless_env.headless_sources,
PROGSUFFIX=".headless" + env["PROGSUFFIX"],
)
default_args += [headless_program]
if env["build_ovsim_tests"]:
tests_env = SConscript("tests/SCsub", "env")
if env["run_ovsim_tests"]:
tests_env.RunUnitTest()
if env["build_ovsim_benchmarks"]:
benchmarks_env = SConscript("tests/benchmarks/SCsub", {"env": tests_env if env["build_ovsim_tests"] else env})
if env["run_ovsim_benchmarks"]:
benchmarks_env.RunBenchmarks()
# Add compiledb if the option is set
if env.get("compiledb", False):
default_args += ["compiledb"]
Default(*default_args)
if "env" in locals():
# FIXME: This method mixes both cosmetic progress stuff and cache handling...
env.show_progress(env)
Return("env")