mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-08-04 22:15:33 +02:00
Add build option for console (default disabled)
This commit is contained in:
parent
dd2583d87c
commit
73ce6a449c
2 changed files with 3 additions and 1 deletions
|
@ -31,5 +31,6 @@ endif
|
|||
executable(meson.project_name(),
|
||||
sources: all_sources,
|
||||
dependencies: [main_dependencies, binding_dependencies],
|
||||
include_directories: include_dirs
|
||||
include_directories: include_dirs,
|
||||
gui_app: (get_option('debug') != false)
|
||||
)
|
||||
|
|
|
@ -2,5 +2,6 @@ option('shared_fluid', type: 'boolean', value: false, description: 'Dynamically
|
|||
option('mri_version', type: 'string', value: '1.8', description: 'Version of MRI to link with')
|
||||
option('workdir_current', type: 'boolean', value: false, description: 'Keep current directory on startup')
|
||||
option('ruby_lib', type: 'string', value: 'ruby', description: 'Name of legacy Ruby library')
|
||||
option('debug', type: 'boolean', value: false, description: 'Whether to debug information in the console')
|
||||
|
||||
option('fix_essentials', type: 'boolean', value: false, description: 'Try to fix incompatibilities between Essentials and MKXP')
|
Loading…
Add table
Reference in a new issue