ocarina/include/Sconscript

10 lines
223 B
Plaintext
Raw Normal View History

#!/usr/bin/python
Import("CONFIG")
if CONFIG.DEBUG:
CONFIG.CCFLAGS += [ "-DCONFIG_VERSION='\"%s-debug\"'" % CONFIG.VERSION ]
else:
CONFIG.CCFLAGS += [ "-DCONFIG_VERSION='\"%s\"'" % CONFIG.VERSION ]
CONFIG.reconfigure()