// This file is a part of toml++ and is subject to the the terms of the MIT license. // Copyright (c) 2019-2020 Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT #define CATCH_CONFIG_RUNNER #include "catch2.h" #include int main(int argc, char* argv[]) { #ifdef _WIN32 SetConsoleOutputCP(65001); #endif std::setlocale(LC_ALL, ""); std::locale::global(std::locale("")); return Catch::Session().run(argc, argv); }