Initial commit
This commit is contained in:
+23
@@ -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
|
||||
)
|
||||
Reference in New Issue
Block a user