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