forked from AuroraMiddleware/gtk
008b7bc94f
It's meant to be a little editor for render nodes so we can do testing with it.
18 lines
571 B
Meson
18 lines
571 B
Meson
node_editor_sources = [
|
|
'main.c',
|
|
'node-editor-application.c',
|
|
'node-editor-window.c',
|
|
]
|
|
|
|
node_editor_resources = gnome.compile_resources('node_editor_resources',
|
|
'node-editor.gresource.xml',
|
|
source_dir: '.')
|
|
|
|
executable('gtk4-node-editor',
|
|
node_editor_sources, node_editor_resources,
|
|
dependencies: libgtk_dep,
|
|
include_directories: confinc,
|
|
gui_app: true,
|
|
link_args: extra_demo_ldflags,
|
|
install: false)
|