diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-12-04 12:18:14 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-12-04 12:18:14 +0100 |
commit | a14896f9ed209dd3f9597722e5a5697bd7dbf531 (patch) | |
tree | 089ca5cbbd206d1921f8f6b53292f5bc1902ca5c /c++/tools/SConscript | |
parent | 84ecdcbca9e55b1f57fbb832e12ff4fdbb86e7c9 (diff) |
meta: Renamed folder containing source
Diffstat (limited to 'c++/tools/SConscript')
-rw-r--r-- | c++/tools/SConscript | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/c++/tools/SConscript b/c++/tools/SConscript deleted file mode 100644 index 7c9efd7..0000000 --- a/c++/tools/SConscript +++ /dev/null @@ -1,32 +0,0 @@ -#!/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 + "/*.h")) - -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); -tools_env.c_array_example = tools_env.Program('#build/forstio-c-array-example', [objects_static]); - -# Set Alias -env.Alias('tools_c_array_example', [tools_env.c_array_example]); - -env.targets += ['tools_c_array_example']; - -# Install -env.Install('$prefix/bin/', [tools_env.c_array_example]); |