Move embedtool.cpp into tools directory

This commit is contained in:
刘皓 2025-04-15 12:20:22 -04:00
parent 3625ab9989
commit 8277390e13
No known key found for this signature in database
GPG key ID: 7901753DB465B711
3 changed files with 2 additions and 3 deletions

View file

@ -111,9 +111,7 @@ endif
global_args += '-DMKXPZ_INIT_GL_LATER'
subdir('src')
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'])
subdir('tools')
subdir('binding')
subdir('shader')
subdir('assets')

1
tools/meson.build Normal file
View file

@ -0,0 +1 @@
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'])