diff options
Diffstat (limited to 'modules/remote')
-rw-r--r-- | modules/remote/c++/SConscript | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/modules/remote/c++/SConscript b/modules/remote/c++/SConscript new file mode 100644 index 0000000..34d4ff7 --- /dev/null +++ b/modules/remote/c++/SConscript @@ -0,0 +1,38 @@ +#!/bin/false + +import os +import os.path +import glob + + +Import('env') + +dir_path = Dir('.').abspath + +# Environment for base library +remote_env = env.Clone(); + +remote_env.sources = sorted(glob.glob(dir_path + "/*.cpp")) +remote_env.headers = sorted(glob.glob(dir_path + "/*.hpp")) + +env.sources += remote_env.sources; +env.headers += remote_env.headers; + +## Shared lib +objects_shared = [] +remote_env.add_source_files(objects_shared, remote_env.sources, shared=True); +env.library_shared = remote_env.SharedLibrary('#build/forstio-remote', [objects_shared]); + +## Static lib +objects_static = [] +remote_env.add_source_files(objects_static, remote_env.sources, shared=False); +env.library_static = remote_env.StaticLibrary('#build/forstio-remote', [objects_static]); + +# Set Alias +env.Alias('library_remote', [env.library_shared, env.library_static]); + +env.targets += ['library_remote']; + +# Install +env.Install('$prefix/lib/', [env.library_shared, env.library_static]); +env.Install('$prefix/include/forstio/remote/', [remote_env.headers]); |