diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-02-05 17:39:28 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-02-05 17:39:28 +0100 |
commit | 2790590996da2f6a0f4d59570de62078a5ac8ae2 (patch) | |
tree | 526c188230bd29d5127cc13d10390b1cd134bebc /modules/tools/c++/SConscript | |
parent | 4e45bbc55c4011b919f0af8d43850748209f7f09 (diff) |
tools: Move to new module structure and moving to more schema based
generation to convert more easily to json
Diffstat (limited to 'modules/tools/c++/SConscript')
-rw-r--r-- | modules/tools/c++/SConscript | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/modules/tools/c++/SConscript b/modules/tools/c++/SConscript new file mode 100644 index 0000000..9ff46d0 --- /dev/null +++ b/modules/tools/c++/SConscript @@ -0,0 +1,33 @@ +#!/bin/false + +import os +import os.path +import glob + + +Import('env') + +dir_path = Dir('.').abspath + +# Environment for base library +tools_env = env.Clone(); + +tools_env.sources = sorted(glob.glob(dir_path + "/*.cpp")) +tools_env.headers = sorted(glob.glob(dir_path + "/*.hpp")) + +env.sources += tools_env.sources; +env.headers += tools_env.headers; + +## Static lib +objects_static = [] +tools_env.add_source_files(objects_static, tools_env.sources, shared=False); +env.library_static = tools_env.StaticLibrary('#build/forstio-tools', [objects_static]); + +# Set Alias +env.Alias('library_tools', [env.library_static]); + +env.targets += ['library_tools']; + +# Install +env.Install('$prefix/lib/', [env.library_static]); +env.Install('$prefix/include/forstio/tools/', [tools_env.headers]); |