blob: 50331c644296f95055ac2d7e6597344e54df8662 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#define CATCH_CONFIG_RUNNER
#include <catch2/catch.hpp>
#include <vcpkg/base/system.debug.h>
int main(int argc, char** argv)
{
vcpkg::Debug::g_debugging = true;
return Catch::Session().run(argc, argv);
}
|