diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2024-07-23 15:08:19 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2024-07-23 15:08:19 +0200 |
| commit | 4ec6a2ae12b6adb843c0777649ff45a741ca6cbc (patch) | |
| tree | 93dc2ba99dbcb42b2af73f0a3c4cd4f0c0f091c4 /test_support/src | |
| parent | 5f4249a37ce816b8deceb299bc841190fbb15983 (diff) | |
| download | turns-4ec6a2ae12b6adb843c0777649ff45a741ca6cbc.tar.xz turns-4ec6a2ae12b6adb843c0777649ff45a741ca6cbc.zip | |
domain: redesign turn_order
Diffstat (limited to 'test_support/src')
| -rw-r--r-- | test_support/src/glib_main.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test_support/src/glib_main.cpp b/test_support/src/glib_main.cpp index d224bad..b9dc858 100644 --- a/test_support/src/glib_main.cpp +++ b/test_support/src/glib_main.cpp @@ -1,10 +1,19 @@ #include <catch2/catch_session.hpp> +#include <giomm/init.h> #include <glibmm/init.h> +namespace turns::tests +{ + auto register_types() -> void; +} // namespace turns::tests + auto main(int argc, char * argv[]) -> int { + Gio::init(); Glib::init(); + turns::tests::register_types(); + return Catch::Session().run(argc, argv); }
\ No newline at end of file |
