2017-11-01 21:27:13 +08:00
|
|
|
subdir('gfig-examples')
|
|
|
|
subdir('images')
|
|
|
|
|
|
|
|
plugin_name = 'gfig'
|
|
|
|
|
|
|
|
plugin_sources = [
|
|
|
|
'gfig-arc.c',
|
|
|
|
'gfig-bezier.c',
|
|
|
|
'gfig-circle.c',
|
|
|
|
'gfig-dialog.c',
|
|
|
|
'gfig-dobject.c',
|
|
|
|
'gfig-ellipse.c',
|
|
|
|
'gfig-grid.c',
|
|
|
|
'gfig-icons.c',
|
|
|
|
'gfig-line.c',
|
|
|
|
'gfig-poly.c',
|
|
|
|
'gfig-preview.c',
|
|
|
|
'gfig-rectangle.c',
|
|
|
|
'gfig-spiral.c',
|
|
|
|
'gfig-star.c',
|
|
|
|
'gfig-style.c',
|
|
|
|
'gfig.c',
|
|
|
|
gfig_icon_sources,
|
|
|
|
]
|
|
|
|
|
2023-08-09 22:48:21 +08:00
|
|
|
plugin_sources += gnome.compile_resources(
|
|
|
|
'gfig-menus',
|
|
|
|
'gfig-menus.gresource.xml',
|
|
|
|
)
|
|
|
|
|
2017-11-01 21:27:13 +08:00
|
|
|
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),
|
2022-08-31 07:07:27 +08:00
|
|
|
'--define', 'TOP_SRCDIR="@0@"' .format(meson.project_source_root()),
|
2017-11-01 21:27:13 +08:00
|
|
|
],
|
|
|
|
include_directories: [
|
|
|
|
rootInclude, appInclude,
|
|
|
|
],
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
|
|
|
executable(plugin_name,
|
|
|
|
plugin_sources,
|
|
|
|
dependencies: [
|
2020-05-11 13:01:37 +08:00
|
|
|
libgimpui_dep,
|
|
|
|
math,
|
2017-11-01 21:27:13 +08:00
|
|
|
],
|
|
|
|
install: true,
|
|
|
|
install_dir: gimpplugindir / 'plug-ins' / plugin_name,
|
|
|
|
)
|