blob: 94d41efdf916a4d993dd5c2d062008a58e481298 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
add_library("ui-res" OBJECT)
target_link_libraries("ui-res" PRIVATE
"PkgConfig::giomm"
)
set(UI_FILES
"widgets/participant_row.ui"
"widgets/turn_order_view.ui"
"windows/participant_editor.ui"
"windows/tracker.ui"
)
export_cambalache_files("ui.cmb"
UI_FILES ${UI_FILES}
)
target_add_glib_resources("ui-res"
PREFIX "/"
UI_FILES ${UI_FILES}
)
enable_coverage("ui-res")
|