Files
FlaxEngine/Source/Engine/Tests/TestMain.cpp
2022-01-14 13:31:12 +01:00

15 lines
304 B
C++

// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved.
#if PLATFORM_WINDOWS || PLATFORM_LINUX || PLATFORM_MAC
#define CATCH_CONFIG_RUNNER
#include <ThirdParty/catch2/catch.hpp>
int main(int argc, char* argv[])
{
int result = Catch::Session().run(argc, argv);
return result;
}
#endif