2017-11-01 14:27:13 +01:00
|
|
|
|
|
|
|
if platform_windows
|
|
|
|
gimp_debug_resume = executable('gimp-debug-resume',
|
|
|
|
'gimp-debug-resume.c',
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
gimptool = executable('gimptool-' + gimp_app_version,
|
|
|
|
'gimptool.c',
|
|
|
|
include_directories: rootInclude,
|
|
|
|
dependencies: [
|
|
|
|
gtk3,
|
|
|
|
],
|
|
|
|
link_with: [
|
|
|
|
libgimpbase,
|
|
|
|
],
|
|
|
|
c_args: [
|
|
|
|
'-DDATADIR="@0@"'.format(get_option('datadir')),
|
|
|
|
],
|
|
|
|
install: true,
|
|
|
|
)
|
|
|
|
|
|
|
|
executable('gimp-test-clipboard-' + gimp_app_version,
|
|
|
|
'gimp-test-clipboard.c',
|
|
|
|
include_directories: rootInclude,
|
|
|
|
dependencies: [
|
|
|
|
gtk3,
|
|
|
|
],
|
|
|
|
install: true,
|
|
|
|
)
|
|
|
|
|
|
|
|
executable('kernelgen',
|
|
|
|
'kernelgen.c',
|
|
|
|
include_directories: rootInclude,
|
|
|
|
install: false,
|
|
|
|
)
|
2022-01-28 22:34:02 +01:00
|
|
|
|
|
|
|
if not have_vector_icons
|
|
|
|
colorsvg2png = executable('colorsvg2png',
|
|
|
|
'colorsvg2png.c',
|
|
|
|
native: true,
|
|
|
|
dependencies: [
|
|
|
|
native_glib,
|
|
|
|
native_rsvg
|
|
|
|
],
|
|
|
|
install: false,
|
|
|
|
)
|
|
|
|
endif
|