aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg-tests/catch.cpp
blob: 701dcb39ae0d5c5fd73ca61aea2dde37456fac87 (plain)
1
2
3
4
5
6
7
8
9
10
11
#define CATCH_CONFIG_RUNNER
#include <vcpkg-tests/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);
}