summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2023-07-20 20:52:46 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2023-07-20 20:52:46 +0200
commit933f712dd3fa4a1e40b4a16bb22c67a37e0d0ead (patch)
tree01a05e76def09a0abed39d5324055474e33b2af7
parentfac9e8bec1983fa9dff8f447fef106e427dfec26 (diff)
c++,graphics: Slowly starting rebuilding the graphics code
-rw-r--r--c++/graphics/.nix/derivation.nix38
-rw-r--r--c++/graphics/SConscript38
-rw-r--r--c++/graphics/SConstruct81
3 files changed, 157 insertions, 0 deletions
diff --git a/c++/graphics/.nix/derivation.nix b/c++/graphics/.nix/derivation.nix
new file mode 100644
index 0000000..36a12c8
--- /dev/null
+++ b/c++/graphics/.nix/derivation.nix
@@ -0,0 +1,38 @@
+{ lib
+, stdenvNoCC
+, scons
+, clang
+, clang-tools
+, version
+, forstio
+, xorg
+}:
+
+let
+
+in stdenvNoCC.mkDerivation {
+ pname = "forstio-graphics";
+ inherit version;
+ src = ./..;
+
+ enableParallelBuilding = true;
+
+ nativeBuildInputs = [
+ scons
+ clang
+ clang-tools
+ ];
+
+ buildInputs = [
+ forstio.core
+ forstio.async
+ forstio.io
+ forstio.codec
+ forstio.window
+ forstio.window-opengl
+ xorg.libX11
+ xorg.libxcb
+ ];
+
+ outputs = ["out" "dev"];
+}
diff --git a/c++/graphics/SConscript b/c++/graphics/SConscript
new file mode 100644
index 0000000..bd830b9
--- /dev/null
+++ b/c++/graphics/SConscript
@@ -0,0 +1,38 @@
+#!/bin/false
+
+import os
+import os.path
+import glob
+
+
+Import('env')
+
+dir_path = Dir('.').abspath
+
+# Environment for base library
+window_env = env.Clone();
+
+window_env.sources = sorted(glob.glob(dir_path + "/*.cpp"))
+window_env.headers = sorted(glob.glob(dir_path + "/*.h"))
+
+env.sources += window_env.sources;
+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]);
+
+## 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]);
+
+# Set Alias
+env.Alias('library_window', [window_env.library_shared, window_env.library_static]);
+
+env.targets += ['library_window'];
+
+# Install
+env.Install('$prefix/lib/', [window_env.library_shared, window_env.library_static]);
+env.Install('$prefix/include/forstio/window/', [window_env.headers]);
diff --git a/c++/graphics/SConstruct b/c++/graphics/SConstruct
new file mode 100644
index 0000000..8c8e09e
--- /dev/null
+++ b/c++/graphics/SConstruct
@@ -0,0 +1,81 @@
+#!/usr/bin/env python3
+
+import sys
+import os
+import os.path
+import glob
+import re
+
+
+if sys.version_info < (3,):
+ def isbasestring(s):
+ return isinstance(s,basestring)
+else:
+ def isbasestring(s):
+ return isinstance(s, (str,bytes))
+
+def add_kel_source_files(self, sources, filetype, lib_env=None, shared=False, target_post=""):
+
+ if isbasestring(filetype):
+ dir_path = self.Dir('.').abspath
+ filetype = sorted(glob.glob(dir_path+"/"+filetype))
+
+ for path in filetype:
+ target_name = re.sub( r'(.*?)(\.cpp|\.c\+\+)', r'\1' + target_post, path )
+ if shared:
+ target_name+='.os'
+ sources.append( self.SharedObject( target=target_name, source=path ) )
+ else:
+ target_name+='.o'
+ sources.append( self.StaticObject( target=target_name, source=path ) )
+ pass
+
+def isAbsolutePath(key, dirname, env):
+ assert os.path.isabs(dirname), "%r must have absolute path syntax" % (key,)
+
+env_vars = Variables(
+ args=ARGUMENTS
+)
+
+env_vars.Add('prefix',
+ help='Installation target location of build results and headers',
+ default='/usr/local/',
+ validator=isAbsolutePath
+)
+
+env=Environment(ENV=os.environ, variables=env_vars, CPPPATH=[],
+ CPPDEFINES=[
+ 'SAW_UNIX',
+ 'SAW_UNIX_XCB'
+ ],
+ CXXFLAGS=[
+ '-std=c++20',
+ '-g','-Wall',
+ '-Wextra'
+ ],
+ LIBS=[
+ 'forstio-core',
+ 'forstio-io',
+ 'forstio-async',
+ 'forstio-codec',
+ 'forstio-window'
+ ]
+);
+
+env.__class__.add_source_files = add_kel_source_files
+env.Tool('compilation_db');
+env.cdb = env.CompilationDatabase('compile_commands.json');
+
+env.objects = [];
+env.sources = [];
+env.headers = [];
+env.targets = [];
+
+Export('env')
+SConscript('SConscript')
+
+env.Alias('cdb', env.cdb);
+env.Alias('all', [env.targets]);
+env.Default('all');
+
+env.Alias('install', '$prefix')