blob: 4a74ac5f692f5de0bc9dabb843b3bbf65b117e00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <catch2/catch_session.hpp>
#include <libintl.h>
auto main(int argc, char * argv[]) -> int
{
setlocale(LC_ALL, "");
bindtextdomain("turns", TESTLOCALEDIR);
bind_textdomain_codeset("turns", "UTF-8");
textdomain("turns");
return Catch::Session().run(argc, argv);
}
|