diff options
author | Spartan322 <Megacake1234@gmail.com> | 2024-05-15 18:22:06 +0200 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2024-05-15 18:23:42 +0200 |
commit | 9802f0b500fd753b49b1785edbe204d46aac4b3d (patch) | |
tree | 7bd53754f6294a11f81774593aa15cf43b3dc26e /SConstruct | |
parent | a5a6ff376cf0ff8fa48fcd750c16395b099223a4 (diff) |
Expose dataloader includesfix/includes
Fix dataloader file includes
Fix leaking lexy includes
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -19,6 +19,8 @@ opts.Add(BoolVariable("build_ovdl_headless", "Build the openvic dataloader headl env.FinalizeOptions() +env.exposed_includes = [] + SConscript("deps/SCsub", "env") env.openvic_dataloader = {} @@ -63,7 +65,7 @@ if env["build_ovdl_library"]: env.openvic_dataloader["LIBPATH"] = env["LIBPATH"] env.openvic_dataloader["LIBS"] = env["LIBS"] - env.openvic_dataloader["INCPATH"] = [env.Dir(include_path)] + env.openvic_dataloader["INCPATH"] = [env.Dir(include_path)] + env.exposed_includes headless_program = None env["PROGSUFFIX"] = suffix + env["PROGSUFFIX"] |