mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-04-22 06:02:04 +02:00
19 lines
487 B
Meson
19 lines
487 B
Meson
swarg = ''
|
|
if steamworks == true
|
|
swarg = steam_libpath
|
|
endif
|
|
|
|
if get_option('appimage') == true
|
|
install_data('AppRun')
|
|
install_data('mkxp-z.png')
|
|
install_data('mkxp-z.desktop')
|
|
|
|
meson.add_install_script('make_appimg.sh', meson.project_name(), get_option('appimagekit_path'), swarg)
|
|
else
|
|
if sizeof['long'] == 8
|
|
archarg = '64'
|
|
else
|
|
archarg = '32'
|
|
endif
|
|
meson.add_install_script('install.sh', meson.project_name() + '.' + host_machine.cpu(), archarg, swarg)
|
|
endif
|