2019-06-30 13:25:30 +00:00
|
|
|
constraint_editor_sources = [
|
|
|
|
'main.c',
|
|
|
|
'constraint-editor-application.c',
|
|
|
|
'constraint-editor-window.c',
|
|
|
|
'constraint-view.c',
|
|
|
|
'constraint-editor.c',
|
|
|
|
'guide-editor.c',
|
|
|
|
]
|
|
|
|
|
|
|
|
constraint_editor_resources = gnome.compile_resources('constraint_editor_resources',
|
|
|
|
'constraint-editor.gresource.xml',
|
|
|
|
source_dir: '.')
|
|
|
|
|
|
|
|
executable('gtk4-constraint-editor',
|
|
|
|
constraint_editor_sources, constraint_editor_resources,
|
2020-03-06 17:51:10 +00:00
|
|
|
c_args: common_cflags,
|
2019-06-30 13:25:30 +00:00
|
|
|
dependencies: libgtk_dep,
|
|
|
|
include_directories: confinc,
|
|
|
|
gui_app: true,
|
2019-07-08 10:37:27 +00:00
|
|
|
link_args: extra_demo_ldflags,
|
2019-06-30 13:25:30 +00:00
|
|
|
install: false)
|