dce311cf1a
Makes it so that the scripting cmake variable ENABLE_SCRIPTING is a user variable rather than a global internal cmake variable, and defers the internal global cmake variable to SCRIPTING_ENABLED instead.
23 lines
313 B
C
23 lines
313 B
C
#pragma once
|
|
|
|
#ifndef TRUE
|
|
#define TRUE 1
|
|
#endif
|
|
|
|
#ifndef ON
|
|
#define ON 1
|
|
#endif
|
|
|
|
#ifndef FALSE
|
|
#define FALSE 0
|
|
#endif
|
|
|
|
#ifndef OFF
|
|
#define OFF 0
|
|
#endif
|
|
|
|
#define BUILD_CAPTIONS @BUILD_CAPTIONS@
|
|
#define ENABLE_SCRIPTING @SCRIPTING_ENABLED@
|
|
#define COMPILE_LUA @COMPILE_LUA@
|
|
#define COMPILE_PYTHON @COMPILE_PYTHON@
|