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',
|
2020-12-15 12:31:38 +00:00
|
|
|
'constraint-editor.gresource.xml',
|
|
|
|
source_dir: '.',
|
|
|
|
)
|
2019-06-30 13:25:30 +00:00
|
|
|
|
|
|
|
executable('gtk4-constraint-editor',
|
2020-12-15 12:31:38 +00:00
|
|
|
sources: [ constraint_editor_sources, constraint_editor_resources, ],
|
|
|
|
c_args: common_cflags,
|
|
|
|
dependencies: libgtk_dep,
|
|
|
|
include_directories: confinc,
|
2021-12-24 15:51:11 +00:00
|
|
|
win_subsystem: 'windows',
|
2020-12-15 12:31:38 +00:00
|
|
|
link_args: extra_demo_ldflags,
|
|
|
|
install: false,
|
|
|
|
)
|