diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2024-07-24 13:23:55 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2024-07-24 13:23:55 +0200 |
| commit | 4d0a7d99ebf55ad2d0e583759699b8b4d77a7907 (patch) | |
| tree | 302a2661c5ae099129db40c75cbadf6b5e8c9bd4 /ui/res/CMakeLists.txt | |
| parent | f3317ddcaa8af0fb7b4be475dc97ef0649d1975b (diff) | |
| download | turns-4d0a7d99ebf55ad2d0e583759699b8b4d77a7907.tar.xz turns-4d0a7d99ebf55ad2d0e583759699b8b4d77a7907.zip | |
app: move ui code to ui library
Diffstat (limited to 'ui/res/CMakeLists.txt')
| -rw-r--r-- | ui/res/CMakeLists.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ui/res/CMakeLists.txt b/ui/res/CMakeLists.txt new file mode 100644 index 0000000..94d41ef --- /dev/null +++ b/ui/res/CMakeLists.txt @@ -0,0 +1,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")
\ No newline at end of file |
