1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-08 18:39:29 +00:00
OpenMW/apps/openmw_tests/main.cpp
elsid 7d1cd11ba9
Split openmw_test_suite into openmw and components tests
To avoid duplicated compilation for openmw translation units. Link openmw-lib to
openmw-tests instead.
2024-06-10 23:12:14 +02:00

8 lines
133 B
C++

#include <gtest/gtest.h>
int main(int argc, char* argv[])
{
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}