2017-11-01 21:27:13 +08:00
|
|
|
subdir('examples')
|
|
|
|
|
|
|
|
plugin_name = 'fractal-explorer'
|
|
|
|
|
|
|
|
plugin_sources = [
|
|
|
|
'fractal-explorer-dialogs.c',
|
|
|
|
'fractal-explorer.c',
|
|
|
|
]
|
|
|
|
|
|
|
|
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,
|
|
|
|
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,
|
|
|
|
)
|