mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-07-01 14:15:16 +02:00
25 lines
537 B
Meson
25 lines
537 B
Meson
embedded_assets = [
|
|
'icon.png'
|
|
]
|
|
|
|
if get_option('cjk_fallback_font') == true
|
|
embedded_assets += 'wqymicrohei.ttf'
|
|
else
|
|
embedded_assets += 'liberation.ttf'
|
|
endif
|
|
|
|
embedded_assets_f = files(embedded_assets)
|
|
|
|
count = 0
|
|
foreach file : embedded_assets_f
|
|
global_sources += custom_target(embedded_assets[count],
|
|
input: file,
|
|
output: '@0@.xxd'.format(embedded_assets[count]),
|
|
command: [
|
|
xxd, '-i', '@INPUT@'
|
|
],
|
|
capture: true,
|
|
depend_files: embedded_assets_f[count]
|
|
)
|
|
count += 1
|
|
endforeach
|