2019-12-17 08:03:41 -06:00
option (
'static' ,
type : 'combo' ,
choices : [ 'none' , 'system' , 'prebuilt' ] ,
value : 'none' ,
description : 'Build statically using libraries present on the system (\'system\') or using prebuilt libraries official builds use (\'prebuilt\')'
)
option (
'beta' ,
type : 'boolean' ,
value : false ,
description : 'Beta build'
)
option (
'ignore_updates' ,
type : 'boolean' ,
value : true ,
description : 'Don\'t show notifications about available updates'
)
option (
'install_check' ,
type : 'boolean' ,
value : false ,
description : 'Do install check on startup'
)
option (
'http' ,
type : 'boolean' ,
value : true ,
description : 'Enable HTTP via libcurl'
)
option (
'gravfft' ,
type : 'boolean' ,
value : true ,
description : 'Enable FFT gravity via libfftw3'
)
option (
'snapshot' ,
type : 'boolean' ,
value : false ,
description : 'Snapshot build'
)
option (
'snapshot_id' ,
type : 'integer' ,
min : 0 ,
2022-02-22 01:08:53 -06:00
value : 0 ,
2019-12-17 08:03:41 -06:00
description : 'Snapshot ID, only relevant if \'snapshot\' is true'
)
option (
'mod_id' ,
type : 'integer' ,
min : 0 ,
value : 0 ,
description : 'Mod ID, used on the https://starcatcher.us/TPT build server, the build server will compile for all platforms for you and send updates in-game, see jacob1 to get a mod ID'
)
option (
'lua' ,
type : 'combo' ,
2022-08-23 04:14:06 -05:00
choices : [ 'none' , 'lua5.1' , 'lua5.2' , 'luajit' , 'auto' ] ,
value : 'auto' ,
2019-12-17 08:03:41 -06:00
description : 'Lua library to use'
)
option (
'x86_sse' ,
type : 'combo' ,
choices : [ 'none' , 'sse' , 'sse2' , 'sse3' , 'auto' ] ,
value : 'auto' ,
description : 'Enable SSE (available only on x86)'
)
option (
'build_powder' ,
type : 'boolean' ,
value : true ,
description : 'Build the game'
)
option (
'build_render' ,
type : 'boolean' ,
value : false ,
description : 'Build the thumbnail renderer'
)
option (
'build_font' ,
type : 'boolean' ,
value : false ,
description : 'Build the font editor'
)
2020-12-15 15:02:56 -06:00
option (
'server' ,
type : 'string' ,
value : 'powdertoy.co.uk' ,
description : 'Simulation server'
)
option (
'static_server' ,
type : 'string' ,
value : 'static.powdertoy.co.uk' ,
description : 'Static simulation server'
)
option (
'update_server' ,
type : 'string' ,
value : '' ,
description : 'Update server, only used by snapshots and mods, see \'snapshot_id\' and \'mod_id\''
)
2021-04-10 11:24:37 -05:00
option (
'workaround_gcc_no_pie' ,
type : 'boolean' ,
value : true ,
description : 'Pass -no-pie to gcc manually to work around meson\'s -Db_pie=false doing nothing'
)
2022-04-09 08:01:23 -05:00
option (
'tpt_libs_vtag' ,
type : 'string' ,
value : '' ,
2022-04-11 14:11:03 -05:00
description : 'tpt-libs vtag override, only used for tpt-libs development'
)
option (
'android_keystore' ,
type : 'string' ,
value : '' ,
description : 'Path to Java keystore for signing an APK, only used for Android development'
)
option (
'android_keyalias' ,
type : 'string' ,
value : 'androidkey' ,
description : 'Signing key alias for signing an APK, only used for Android development'
2022-04-09 08:01:23 -05:00
)