initial commit

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2025-09-13 17:14:59 +05:30
commit de91a303e2
9 changed files with 234 additions and 0 deletions

13
meson.build Normal file
View File

@@ -0,0 +1,13 @@
project('singh5', 'cpp',
version : '0.1',
license : 'GPLv3',
default_options : ['warning_level=3',
'werror=true',
'optimization=3',
'cpp_std=c++23'])
compiler = meson.get_compiler('cpp')
lib_cpp_args = []
subdir('src')