From fac9e8bec1983fa9dff8f447fef106e427dfec26 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Thu, 20 Jul 2023 17:02:05 +0200 Subject: c++: Renamed src to c++ --- c++/test/SConscript | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 c++/test/SConscript (limited to 'c++/test/SConscript') diff --git a/c++/test/SConscript b/c++/test/SConscript new file mode 100644 index 0000000..6379b24 --- /dev/null +++ b/c++/test/SConscript @@ -0,0 +1,33 @@ +#!/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]); -- cgit v1.2.3