mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-08-23 15:23:44 +02:00
14 lines
301 B
Meson
14 lines
301 B
Meson
embedtool = executable(
|
|
'embedtool',
|
|
sources: 'embedtool.cpp',
|
|
native: true,
|
|
override_options: [
|
|
'buildtype=release',
|
|
'b_coverage=false',
|
|
'b_lto=false',
|
|
'b_ndebug=false',
|
|
'b_pgo=off',
|
|
'b_sanitize=none',
|
|
'cpp_std=c++11',
|
|
],
|
|
)
|