diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-12-04 13:45:37 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-12-04 13:45:37 +0100 |
commit | 8da0229a7e172a86c023edc6bb25ba803c68f5d3 (patch) | |
tree | c305cf094528b70ae99af79a9a650f9dc98fc0b9 /modules/test/SConscript | |
parent | fb7ed24d557c9f9ac5eaa60dbf22cba509953c1a (diff) |
core, tests: Moving core tests to core module
Diffstat (limited to 'modules/test/SConscript')
-rw-r--r-- | modules/test/SConscript | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/modules/test/SConscript b/modules/test/SConscript deleted file mode 100644 index 6379b24..0000000 --- a/modules/test/SConscript +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/false - -import os -import os.path -import glob - - -Import('env') - -dir_path = Dir('.').abspath - -# Environment for base library -test_env = env.Clone(); - -test_env.sources = sorted(glob.glob(dir_path + "/*.cpp")) -test_env.headers = sorted(glob.glob(dir_path + "/*.h")) - -env.sources += test_env.sources; -env.headers += test_env.headers; - -## Shared lib -objects = [] -test_env.add_source_files(objects, test_env.sources, shared=False); -test_env.library = test_env.StaticLibrary('#build/forstio-test', [objects]); - -# Set Alias -env.Alias('library_test', [test_env.library]); - -env.targets += ['library_test']; - -# Install -env.Install('$prefix/lib/', [test_env.library]); -env.Install('$prefix/include/forstio/test/', [test_env.headers]); |