gencpp/test/test.cpp

33 lines
349 B
C++
Raw Normal View History

#include "Bloat.cpp"
#include "NonParsed\Array.NonParsed.hpp"
#include "NonParsed\Sanity.hpp"
2023-04-01 19:21:46 -07:00
#ifdef gen_time
#include "gen.cpp"
using namespace gen;
int gen_main()
2023-04-01 19:21:46 -07:00
{
Memory::setup();
gen::init();
gen_sanity();
// gen_array_file();
2023-05-08 17:54:24 -07:00
gen::deinit();
Memory::cleanup();
2023-04-22 21:43:31 -07:00
return 0;
}
2023-04-01 19:21:46 -07:00
#endif
#ifdef runtime
2023-04-01 19:21:46 -07:00
int main()
{
return 0;
2023-04-01 19:21:46 -07:00
}
#endif