1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-09 21:42:13 +00:00
OpenMW/apps/openmw_tests/main.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
227 B
C++
Raw Normal View History

2024-06-15 11:53:13 +00:00
#include <components/debug/debugging.hpp>
#include <gtest/gtest.h>
int main(int argc, char* argv[])
{
2024-06-15 11:53:13 +00:00
Log::sMinDebugLevel = Debug::getDebugLevel();
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}