123456789101112131415161718192021222324 |
- #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 SCRIPT_DIR "@OBS_SCRIPT_PLUGIN_PATH@"
- #define PYTHON_LIB "@PYTHON_LIB@"
- #define COMPILE_LUA @LUAJIT_FOUND@
- #define COMPILE_PYTHON @PYTHON_FOUND@
- #define UI_ENABLED @UI_ENABLED@
- #define BUILD_CAPTIONS @BUILD_CAPTIONS@
|