From 18bf2f08ee86fd1ed0a663d256e1c7d3142827d7 Mon Sep 17 00:00:00 2001 From: Claudius 'keldu' Holeksa Date: Thu, 12 Sep 2024 17:30:21 +0200 Subject: lang module separating from tools --- modules/lang/examples/SConscript | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 modules/lang/examples/SConscript (limited to 'modules/lang/examples/SConscript') diff --git a/modules/lang/examples/SConscript b/modules/lang/examples/SConscript new file mode 100644 index 0000000..99561e7 --- /dev/null +++ b/modules/lang/examples/SConscript @@ -0,0 +1,31 @@ +#!/bin/false + +import os +import os.path +import glob + + +Import('env') + +dir_path = Dir('.').abspath + +# Environment for base library +examples_env = env.Clone(); + +examples_env.sources = sorted(glob.glob(dir_path + "/*.cpp")) +examples_env.headers = sorted(glob.glob(dir_path + "/*.hpp")) + +env.sources += examples_env.sources; +env.headers += examples_env.headers; + +objects_static = [] +examples_env.cli_mod = examples_env.Program('#bin/cli_mod_example', ['cli_mod.cpp', env.library_static]); + +# Set Alias +env.examples = [examples_env.cli_mod]; +env.Alias('examples', env.examples); + +if env["build_examples"]: + env.targets += ['examples']; + env.Install('$prefix/bin/', env.examples); +#endif -- cgit v1.2.3