devilutionX/test/main.cpp
Gleb Mazovetskiy 2efa5e4ee2 CMake: Place tests where everything else is
This should hopefully fix DLL lookup on Windows (#3778)
2021-12-17 17:16:29 +00:00

12 lines
220 B
C++

#include <gtest/gtest.h>
#include "diablo.h"
int main(int argc, char **argv)
{
// Disable error dialogs.
devilution::gbQuietMode = true;
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}