From 87d659ca1a14fe8cf4871b8db0f42d005964f565 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Fri, 12 Jul 2024 12:37:10 +0200 Subject: app/windows: add basic main window --- test_support/src/gtk_main.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test_support/src/gtk_main.cpp (limited to 'test_support/src') diff --git a/test_support/src/gtk_main.cpp b/test_support/src/gtk_main.cpp new file mode 100644 index 0000000..02173f9 --- /dev/null +++ b/test_support/src/gtk_main.cpp @@ -0,0 +1,12 @@ +#include + +#include +#include + +auto main(int argc, char * argv[]) -> int +{ + Gtk::init_gtkmm_internals(); + adw_init(); + + return Catch::Session().run(argc, argv); +} \ No newline at end of file -- cgit v1.2.3