forked from M-Labs/nac3
19 lines
458 B
C++
19 lines
458 B
C++
// 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>
|
|
|
|
#include "irrt_everything.hpp"
|
|
|
|
#include "test/core.hpp"
|
|
#include "test/test_core.hpp"
|
|
#include "test/test_utils.hpp"
|
|
|
|
int main() {
|
|
run_test_core();
|
|
run_test_print();
|
|
run_test_utils();
|
|
return 0;
|
|
} |