gencpp/test/test.cpp

33 lines
430 B
C++
Raw Permalink Normal View History

2023-07-17 20:40:28 -07:00
#define GEN_DEFINE_LIBRARY_CODE_CONSTANTS
#define GEN_ENFORCE_STRONG_CODE_TYPES
#define GEN_EXPOSE_BACKEND
#define GEN_BENCHMARK
#include "gen.cpp"
#include "sanity.cpp"
2023-07-17 20:40:28 -07:00
#include "SOA.cpp"
2023-07-18 21:13:12 -07:00
#if GEN_TIME
int gen_main()
{
using namespace gen;
log_fmt("\ngen_time:");
check_sanity();
check_SOA();
2023-07-17 20:40:28 -07:00
return 0;
}
#endif
// This only has to be done if symbol conflicts occur.
2023-07-18 21:13:12 -07:00
#ifndef GEN_TIME
int main()
{
return 0;
}
#endif