39 lines
823 B
Meson
39 lines
823 B
Meson
|
plugin_name = 'file-psd'
|
||
|
|
||
|
plugin_sources = [
|
||
|
'psd-image-res-load.c',
|
||
|
'psd-layer-res-load.c',
|
||
|
'psd-load.c',
|
||
|
'psd-save.c',
|
||
|
'psd-thumb-load.c',
|
||
|
'psd-util.c',
|
||
|
'psd.c',
|
||
|
]
|
||
|
|
||
|
if platform_windows
|
||
|
plugin_sources += windows.compile_resources(
|
||
|
pika_plugins_rc,
|
||
|
args: [
|
||
|
'--define', 'ORIGINALFILENAME_STR="@0@"'.format(plugin_name+'.exe'),
|
||
|
'--define', 'INTERNALNAME_STR="@0@"' .format(plugin_name),
|
||
|
'--define', 'TOP_SRCDIR="@0@"' .format(meson.project_source_root()),
|
||
|
],
|
||
|
include_directories: [
|
||
|
rootInclude, appInclude,
|
||
|
],
|
||
|
)
|
||
|
endif
|
||
|
|
||
|
executable(plugin_name,
|
||
|
plugin_sources,
|
||
|
c_args: '-DG_LOG_DOMAIN="file-psd"',
|
||
|
dependencies: [
|
||
|
libpikaui_dep,
|
||
|
libjpeg,
|
||
|
math,
|
||
|
zlib,
|
||
|
],
|
||
|
install: true,
|
||
|
install_dir: pikaplugindir / 'plug-ins' / plugin_name,
|
||
|
)
|