diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-01-01 04:32:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-01 04:32:01 +0100 |
commit | 9988b21278dc1c8df044631bd2935a7e450a7bff (patch) | |
tree | ba081f9f4d74865ab5851a2efd560745900ca81a /SConstruct | |
parent | 0a425fbe05d6138b753c0e4a7c06f06695bde8af (diff) | |
parent | e1496a87178d925277aceed0ebcbab06920e15ee (diff) |
Merge pull request #105 from OpenVicProject/add/ordered-map
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -19,6 +19,8 @@ opts.Add(BoolVariable("build_ovsim_headless", "Build the openvic simulation head env.FinalizeOptions() +env.exposed_includes = [] + SConscript("deps/SCsub", "env") env.openvic_simulation = {} @@ -63,7 +65,7 @@ if env["build_ovsim_library"]: env.openvic_simulation["LIBPATH"] = env["LIBPATH"] env.openvic_simulation["LIBS"] = env["LIBS"] - env.openvic_simulation["INCPATH"] = [env.Dir(include_path)] + env.openvic_dataloader["INCPATH"] + env.openvic_simulation["INCPATH"] = [env.Dir(include_path)] + env.exposed_includes headless_program = None env["PROGSUFFIX"] = suffix + env["PROGSUFFIX"] |