26 lines
343 B
C
26 lines
343 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
|
|
|
|
#cmakedefine LUAJIT_FOUND
|
|
#cmakedefine Python_FOUND
|
|
|
|
#define SCRIPT_DIR "@OBS_SCRIPT_PLUGIN_PATH@"
|
|
#define PYTHON_LIB "@OBS_SCRIPT_PYTHON_PATH@"
|
|
|
|
#define UI_ENABLED @ENABLE_UI@
|