From c4033b8c2028efeb9bac236e6b279bdcd8efec34 Mon Sep 17 00:00:00 2001 From: Claudius Holeksa Date: Tue, 18 Apr 2023 18:34:29 +0200 Subject: First commit to restructure the forstio repo --- forstio/core/SConscript | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 forstio/core/SConscript (limited to 'forstio/core/SConscript') diff --git a/forstio/core/SConscript b/forstio/core/SConscript new file mode 100644 index 0000000..184eed1 --- /dev/null +++ b/forstio/core/SConscript @@ -0,0 +1,37 @@ +#!/bin/false + +import os +import os.path +import glob + + +Import('env') + +dir_path = Dir('.').abspath + +# Environment for base library +core_env = env.Clone(); + +core_env.sources = sorted(glob.glob(dir_path + "/*.cpp")) +core_env.headers = sorted(glob.glob(dir_path + "/*.h")) + +env.sources += core_env.sources; +env.headers += core_env.headers; + +## Shared lib +objects_shared = [] +core_env.add_source_files(objects_shared, env.core_sources, shared=True); +core_env.library_shared = core_env.SharedLibrary('#build/forstio-core', [objects_shared]); + +## Static lib +objects_static = [] +core_env.add_source_files(objects_static, env.core_sources, shared=False); +core_env.library_static = core_env.StaticLibrary('#build/forstio-core', [objects_static]); + +# Set Alias +env.Alias('library_core', [core_env.library_shared, core_env.library_static]); +env.Alias('library', ['library_core']); + +# Install +env.Install('$prefix/lib/', [core_env.library_shared, core_env.library_static]); +env.Install('$prefix/include/forstio/', [core_env.headers]); -- cgit v1.2.3