blob: 04bb2569d7d5b8af8981904c9d53abfe1171cada (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
add_library("test_support-gtk" OBJECT
"src/gtk_main.cpp"
)
add_library("turns::gtk-test-main" ALIAS "test_support-gtk")
target_compile_features("test_support-gtk" PRIVATE
"cxx_std_23"
)
target_link_libraries("test_support-gtk" PUBLIC
"PkgConfig::adwaita"
"PkgConfig::gtkmm"
)
|