18084d5aa0
This makes the *A Win32 API variants work correctly with UTF-8 parameters, which is nice because standard C/C++ facilities use those (because microsoft's libc is a steaming pile of microsoft code). OF COURSE this only works on win10 1903 and above. See https://learn.microsoft.com/en-us/windows/apps/design/globalizing/use-utf8-code-page
92 lines
3.1 KiB
Meson
92 lines
3.1 KiB
Meson
rendered_icons_optionally_from_svg = {
|
|
'icon_exe' : { 'png': 'icon_exe.png' , 'svg': 'icon_exe.svg', 'width': '256', 'height': '256' },
|
|
'icon_exe_48': { 'png': 'icon_exe_48.png', 'svg': 'icon_exe.svg', 'width': '48', 'height': '48' },
|
|
'icon_exe_32': { 'png': 'icon_exe_32.png', 'svg': 'icon_exe.svg', 'width': '32', 'height': '32' },
|
|
'icon_exe_16': { 'png': 'icon_exe_16.png', 'svg': 'icon_exe.svg', 'width': '16', 'height': '16' },
|
|
'icon_cps' : { 'png': 'icon_cps.png' , 'svg': 'icon_cps.svg', 'width': '256', 'height': '256' },
|
|
'icon_cps_48': { 'png': 'icon_cps_48.png', 'svg': 'icon_cps.svg', 'width': '48', 'height': '48' },
|
|
'icon_cps_32': { 'png': 'icon_cps_32.png', 'svg': 'icon_cps.svg', 'width': '32', 'height': '32' },
|
|
'icon_cps_16': { 'png': 'icon_cps_16.png', 'svg': 'icon_cps.svg', 'width': '16', 'height': '16' },
|
|
}
|
|
rendered_icons = {}
|
|
if render_icons_with_inkscape.allowed()
|
|
foreach key, info : rendered_icons_optionally_from_svg
|
|
rendered_icons += { key: custom_target(
|
|
key + '-from-svg',
|
|
output: info['png'],
|
|
command: [
|
|
inkscape,
|
|
'--export-area-page',
|
|
'--export-type', 'png',
|
|
'--export-filename', '@OUTPUT@',
|
|
'--export-width', info['width'],
|
|
'--export-height', info['height'],
|
|
files(info['svg']),
|
|
],
|
|
) }
|
|
endforeach
|
|
else
|
|
foreach key, info : rendered_icons_optionally_from_svg
|
|
rendered_icons += { key: files('generated_icons/' + info['png']) }
|
|
endforeach
|
|
endif
|
|
|
|
if host_platform == 'windows'
|
|
make_ico = executable('makeico', sources: 'MakeIco.cpp', native: true)
|
|
generated_win_icos = {}
|
|
win_icos = {
|
|
'icon_exe': [ 'icon_exe', 'icon_exe_48', 'icon_exe_32', 'icon_exe_16' ],
|
|
'icon_cps': [ 'icon_cps', 'icon_cps_48', 'icon_cps_32', 'icon_cps_16' ],
|
|
}
|
|
foreach key, icons : win_icos
|
|
command = [
|
|
make_ico,
|
|
'@OUTPUT@',
|
|
]
|
|
foreach ikey : icons
|
|
command += [ rendered_icons[ikey] ]
|
|
endforeach
|
|
generated_win_icos += { key: custom_target(
|
|
key + '-ico',
|
|
output: key + '.ico',
|
|
command: command,
|
|
) }
|
|
endforeach
|
|
powder_files += windows_mod.compile_resources(
|
|
'powder-res.rc',
|
|
depends: [
|
|
generated_win_icos['icon_exe'],
|
|
generated_win_icos['icon_cps'],
|
|
],
|
|
depend_files: [
|
|
'resource.h',
|
|
'winutf8.xml',
|
|
],
|
|
)
|
|
elif host_platform == 'darwin'
|
|
configure_file(
|
|
input: 'Info.template.plist',
|
|
output: 'Info.plist',
|
|
configuration: conf_data,
|
|
)
|
|
elif host_platform == 'linux'
|
|
data_files += to_array.process(rendered_icons['icon_exe'], extra_args: 'icon_exe_png')
|
|
data_files += to_array.process(rendered_icons['icon_cps'], extra_args: 'icon_cps_png')
|
|
data_files += to_array.process('save.xml', extra_args: 'save_xml')
|
|
data_files += to_array.process(configure_file(
|
|
input: 'powder.template.desktop',
|
|
output: 'powder.desktop',
|
|
configuration: conf_data,
|
|
), extra_args: 'powder_desktop')
|
|
|
|
configure_file(
|
|
input: 'appdata.template.xml',
|
|
output: 'appdata.xml',
|
|
configuration: conf_data,
|
|
)
|
|
endif
|
|
|
|
data_files += to_array.process('save_local.png', extra_args: 'save_local_png')
|
|
data_files += to_array.process('save_online.png', extra_args: 'save_online_png')
|
|
data_files += to_array.process('font.bz2', extra_args: 'compressed_font_data')
|