aboutsummaryrefslogtreecommitdiff
path: root/src/brussel.codegen.comp/CodegenConfig.hpp
blob: b9dc56ca4f8e6caef86d60405819bb32c58bc89d (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#ifndef CODEGEN_DEBUG_PRINT
#	define CODEGEN_DEBUG_PRINT 0
#endif

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