From a8854301d2fe3d09b41ca055a713500edcead000 Mon Sep 17 00:00:00 2001 From: Claudius 'keldu' Holeksa Date: Mon, 26 Aug 2024 20:17:33 +0200 Subject: Working on remote io tcp proxies and tls --- modules/remote-io/examples/SConscript | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 modules/remote-io/examples/SConscript (limited to 'modules/remote-io/examples') diff --git a/modules/remote-io/examples/SConscript b/modules/remote-io/examples/SConscript new file mode 100644 index 0000000..df8e0c6 --- /dev/null +++ b/modules/remote-io/examples/SConscript @@ -0,0 +1,32 @@ +#!/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 = [] + +# Set Alias +env.examples = [ +#, examples_env.echo_server +]; +env.Alias('examples', env.examples); + +if env["build_examples"]: + env.targets += ['examples']; + env.Install('$prefix/bin/', env.examples); +#endif -- cgit v1.2.3