Initial commit

This commit is contained in:
2025-03-31 18:05:17 +02:00
commit 336ef95c3f
10 changed files with 197 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
project(
'haxcc',
['c', 'cpp'],
version : '0.1',
default_options : [
'warning_level=3',
'c_std=c2x',
'cpp_std=c++23'
])
ldscript = 'haxcc.ld'
executable(
'haxcc',
[
'hello.cpp',
'haxcc.c',
'mods/mod_a.c',
'mods/mod_b.c',
],
link_args: ['-Wl,-T', meson.source_root() / ldscript, '-no-pie' ],
install : false
)