aboutsummaryrefslogtreecommitdiff
path: root/buildtools/codegen/CodegenConfig.hpp
blob: 4ed576a1d6bb0597609d728fdd06e5147fcbb484 (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#define CODEGEN_DEBUG_PRINT 1

#if CODEGEN_DEBUG_PRINT
#	define DEBUG_PRINTF(...) printf(__VA_ARGS__)
#else
#	define DEBUG_PRINTF(...)
#endif