From 2790590996da2f6a0f4d59570de62078a5ac8ae2 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Mon, 5 Feb 2024 17:39:28 +0100 Subject: tools: Move to new module structure and moving to more schema based generation to convert more easily to json --- modules/tools/SConscript | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 modules/tools/SConscript (limited to 'modules/tools/SConscript') diff --git a/modules/tools/SConscript b/modules/tools/SConscript deleted file mode 100644 index 9b1ad89..0000000 --- a/modules/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 + "/*.hpp")) - -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]); -- cgit v1.2.3