Files
kompute/test/TestMain.cpp
2020-11-01 10:46:16 +00:00

18 lines
292 B
C++

#include <gtest/gtest.h>
#include <kompute/Kompute.hpp>
int
main(int argc, char* argv[])
{
testing::InitGoogleTest(&argc, argv);
#if KOMPUTE_ENABLE_SPDLOG
spdlog::set_level(
static_cast<spdlog::level::level_enum>(SPDLOG_ACTIVE_LEVEL));
#endif
return RUN_ALL_TESTS();
}