forked from M-Labs/nac3
1
0
Fork 0
nac3/nac3core/irrt/irrt_test.cpp

18 lines
422 B
C++
Raw Normal View History

// This file will be compiled like a real C++ program,
// and we do have the luxury to use the standard libraries.
// That is if the nix flakes do not have issues... especially on msys2...
#include <cstdint>
#include <cstdio>
#include <cstdlib>
// Special macro to inform `#include <irrt/*>` that we
// are testing.
#define IRRT_TESTING
#include <test/test_core.hpp>
int main() {
test::core::run();
return 0;
}