meson: remove mangoapp_32bit option

Was introduced as a means to shorten the build cycles. With the static
lib helper it should no longer be needed.

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
pull/948/head
Emil Velikov 1 year ago committed by jackun
parent eecd451068
commit 221d335006

@ -14,7 +14,6 @@ option('with_wayland', type : 'feature', value : 'disabled')
option('with_dbus', type : 'feature', value : 'enabled')
option('loglevel', type: 'combo', choices : ['trace', 'debug', 'info', 'warn', 'err', 'critical', 'off'], value : 'info', description: 'Max log level in non-debug build')
option('mangoapp', type: 'boolean', value : false)
option('mangoapp_32bit', type: 'boolean', value : false)
option('mangohudctl', type: 'boolean', value : false)
option('mangoapp_layer', type: 'boolean', value : false)
option('tests', type: 'feature', value: 'auto', description: 'Run tests')

@ -224,8 +224,7 @@ if is_unixy
)
endif
if sizeof_ptr != 4 or get_option('mangoapp_32bit')
if get_option('mangoapp')
if get_option('mangoapp')
pre_args += '-DIMGUI_IMPL_OPENGL_LOADER_GLEW'
pre_args += '-DMANGOAPP'
mangoapp = executable(
@ -257,7 +256,6 @@ if sizeof_ptr != 4 or get_option('mangoapp_32bit')
link_args : link_args,
install : true
)
endif
endif
if get_option('mangohudctl')

Loading…
Cancel
Save