diff options
Diffstat (limited to 'test_support/CMakeLists.txt')
| -rw-r--r-- | test_support/CMakeLists.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test_support/CMakeLists.txt b/test_support/CMakeLists.txt new file mode 100644 index 0000000..04bb256 --- /dev/null +++ b/test_support/CMakeLists.txt @@ -0,0 +1,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" +)
\ No newline at end of file |
