forked from AuroraMiddleware/gtk
00b947124f
That's pretty rough around the edges, but it mostly works. Apart from sizing, screw listbox sizing.
19 lines
599 B
Meson
19 lines
599 B
Meson
node_editor_sources = [
|
|
'gtkrendererpaintable.c',
|
|
'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)
|