summaryrefslogtreecommitdiff
path: root/forstio/core/SConscript
diff options
context:
space:
mode:
authorClaudius Holeksa <mail@keldu.de>2023-04-18 18:34:29 +0200
committerClaudius Holeksa <mail@keldu.de>2023-04-18 18:34:29 +0200
commitc4033b8c2028efeb9bac236e6b279bdcd8efec34 (patch)
treefa5a336d0870240604e9037c37e63414764be7e1 /forstio/core/SConscript
First commit to restructure the forstio repo
Diffstat (limited to 'forstio/core/SConscript')
-rw-r--r--forstio/core/SConscript37
1 files changed, 37 insertions, 0 deletions
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]);