This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
forked from DataRealms/CCOSS
-
Notifications
You must be signed in to change notification settings - Fork 41
/
meson_options.txt
14 lines (13 loc) · 1.58 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
option('debug_type', type: 'combo', choices: ['full','minimal','release'], value:'minimal', description: 'Enable certain Debug features, that might slow down the game')
option('cccpdatadir', type:'string', value:'../Cortex-Command-Community-Project-Data', description: 'Path to the Cortex Command Data Repository')
option('data_install_dir', type:'string', value:'share/CortexCommand', description: 'Where to install the data files relative to prefix directory')
option('install_fmod', type:'boolean', value: true, description: 'Wether to install the fmod library.')
option('fmod_dir', type:'string', value:'lib/CortexCommand/', description: 'Where to install the fmod library relative to prefix directory.')
option('install_data', type: 'boolean', value: true, description: 'Whether to install the data repo.')
option('install_runner', type: 'boolean', value: true, description: 'Whether to install the runner script.')
option('sane_warnings', type: 'boolean', value: false, description: 'Disable certain warnings, that are reasonably safe to ignore, though we should fix them at some point.')
option('use_prebuilt_libraries', type: 'boolean', value: true, description: 'On windows use the prebuilt libraries')
option('tracy_enable', type: 'boolean', value: true, description: 'Enable Tracy Profiler')
option('tracy_callstack', type : 'integer', value : 0, description : 'Enfore callstack collection for tracy regions')
option('tracy_on_demand', type : 'boolean', value : true, description : 'On-demand profiling')
option('tracy_debuginfod', type : 'boolean', value : false, description : 'Enable debuginfod support')