Initial commit

This commit is contained in:
2025-09-15 16:08:41 +02:00
commit 19226ca82a
8 changed files with 156 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
project(
'cchax',
['c', 'cpp'],
version : '0.1',
default_options : [
'warning_level=3',
'c_std=c2x',
'cpp_std=c++23'
])
modules = static_library(
'mods',
[
'mod.c',
'mods/mod_a.c',
'mods/mod_b.c',
],
)
executable(
'hax',
[
'hax.cpp',
],
link_whole: modules,
install : false
)