aboutsummaryrefslogtreecommitdiff
path: root/test_support/src/glib_main.cpp
blob: d224bad4a6a8db840f6cfc0bb5c42744cc9a6fbe (plain)
1
2
3
4
5
6
7
8
9
10
#include <catch2/catch_session.hpp>

#include <glibmm/init.h>

auto main(int argc, char * argv[]) -> int
{
  Glib::init();

  return Catch::Session().run(argc, argv);
}