mkxp-z/linux/meson.build

20 lines
460 B
Meson
Raw Normal View History

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(), archarg, swarg)
endif