summaryrefslogtreecommitdiff
path: root/forstio/io-tls/SConscript
diff options
context:
space:
mode:
authorClaudius Holeksa <mail@keldu.de>2023-04-29 19:06:53 +0200
committerClaudius Holeksa <mail@keldu.de>2023-04-29 19:06:53 +0200
commitc742bc3f57cb00d84e2df034f757d4a39e3ade7e (patch)
treeab42b2b86f49c09c0124e5b65c226a0588c2ca05 /forstio/io-tls/SConscript
parentf07487ce8f0f3ebd5c4d1082a9521f09588fa34a (diff)
Added io tls with gnutls
Diffstat (limited to 'forstio/io-tls/SConscript')
-rw-r--r--forstio/io-tls/SConscript38
1 files changed, 38 insertions, 0 deletions
diff --git a/forstio/io-tls/SConscript b/forstio/io-tls/SConscript
new file mode 100644
index 0000000..4f88f37
--- /dev/null
+++ b/forstio/io-tls/SConscript
@@ -0,0 +1,38 @@
+#!/bin/false
+
+import os
+import os.path
+import glob
+
+
+Import('env')
+
+dir_path = Dir('.').abspath
+
+# Environment for base library
+io_tls_env = env.Clone();
+
+io_tls_env.sources = sorted(glob.glob(dir_path + "/*.cpp"))
+io_tls_env.headers = sorted(glob.glob(dir_path + "/*.h"))
+
+env.sources += io_tls_env.sources;
+env.headers += io_tls_env.headers;
+
+## Shared lib
+objects_shared = []
+io_tls_env.add_source_files(objects_shared, io_tls_env.sources, shared=True);
+io_tls_env.library_shared = io_tls_env.SharedLibrary('#build/forstio-io-tls', [objects_shared]);
+
+## Static lib
+objects_static = []
+io_tls_env.add_source_files(objects_static, io_tls_env.sources, shared=False);
+io_tls_env.library_static = io_tls_env.StaticLibrary('#build/forstio-io-tls', [objects_static]);
+
+# Set Alias
+env.Alias('library_io_tls', [io_tls_env.library_shared, io_tls_env.library_static]);
+
+env.targets += ['library_io_tls'];
+
+# Install
+env.Install('$prefix/lib/', [io_tls_env.library_shared, io_tls_env.library_static]);
+env.Install('$prefix/include/forstio/io/tls/', [io_tls_env.headers]);