mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-07-15 12:15:16 +02:00
19 lines
458 B
Meson
19 lines
458 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 = ''
|
|
endif
|
|
meson.add_install_script('install.sh', meson.project_name(), swarg, archarg)
|
|
endif
|