mirror of https://github.com/GNOME/gimp.git
49 lines
1003 B
Meson
49 lines
1003 B
Meson
plugin_name = 'map-object'
|
|
|
|
plugin_sources = [
|
|
'arcball.c',
|
|
'map-object-apply.c',
|
|
'map-object-icons.c',
|
|
'map-object-image.c',
|
|
'map-object-main.c',
|
|
'map-object-preview.c',
|
|
'map-object-shade.c',
|
|
'map-object-ui.c',
|
|
lighting_icon_sources,
|
|
]
|
|
|
|
if platform_windows
|
|
plugin_sources += windows.compile_resources(
|
|
gimp_plugins_rc,
|
|
args: [
|
|
'--define', 'ORIGINALFILENAME_STR="@0@"'.format(plugin_name+'.exe'),
|
|
'--define', 'INTERNALNAME_STR="@0@"' .format(plugin_name),
|
|
'--define', 'TOP_SRCDIR="@0@"' .format(meson.source_root()),
|
|
],
|
|
include_directories: [
|
|
rootInclude, appInclude,
|
|
],
|
|
)
|
|
endif
|
|
|
|
|
|
executable(plugin_name,
|
|
plugin_sources,
|
|
|
|
include_directories: [ rootInclude, ],
|
|
dependencies: [
|
|
gtk3, gegl, math,
|
|
],
|
|
link_with: [
|
|
libgimp,
|
|
libgimpbase,
|
|
libgimpcolor,
|
|
libgimpconfig,
|
|
libgimpmath,
|
|
libgimpui,
|
|
libgimpwidgets,
|
|
],
|
|
install: true,
|
|
install_dir: gimpplugindir / 'plug-ins' / plugin_name,
|
|
)
|