summaryrefslogtreecommitdiff
path: root/c++
diff options
context:
space:
mode:
Diffstat (limited to 'c++')
-rw-r--r--c++/window-opengl/SConscript10
1 files changed, 5 insertions, 5 deletions
diff --git a/c++/window-opengl/SConscript b/c++/window-opengl/SConscript
index bd830b9..7beee1a 100644
--- a/c++/window-opengl/SConscript
+++ b/c++/window-opengl/SConscript
@@ -21,18 +21,18 @@ env.headers += window_env.headers;
## Shared lib
objects_shared = []
window_env.add_source_files(objects_shared, window_env.sources, shared=True);
-window_env.library_shared = window_env.SharedLibrary('#build/forstio-window', [objects_shared]);
+window_env.library_shared = window_env.SharedLibrary('#build/forstio-window-opengl', [objects_shared]);
## Static lib
objects_static = []
window_env.add_source_files(objects_static, window_env.sources, shared=False);
-window_env.library_static = window_env.StaticLibrary('#build/forstio-window', [objects_static]);
+window_env.library_static = window_env.StaticLibrary('#build/forstio-window-opengl', [objects_static]);
# Set Alias
-env.Alias('library_window', [window_env.library_shared, window_env.library_static]);
+env.Alias('library_window_opengl', [window_env.library_shared, window_env.library_static]);
-env.targets += ['library_window'];
+env.targets += ['library_window_opengl'];
# Install
env.Install('$prefix/lib/', [window_env.library_shared, window_env.library_static]);
-env.Install('$prefix/include/forstio/window/', [window_env.headers]);
+env.Install('$prefix/include/forstio/window/opengl/', [window_env.headers]);