obs-studio/deps/obs-scripting/obs-scripting-config.h.in
PatTheMav 349372b3b3 cmake: Add changes for CMake build framework 3.0
New code path only taken if OBS_CMAKE_VERSION is set to 3.0.0 or
greater, old functionality remains unchanged.
2023-03-26 18:20:38 -04:00

30 lines
399 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
#ifndef LUAJIT_FOUND
#cmakedefine LUAJIT_FOUND
#endif
#ifndef Python_FOUND
#cmakedefine Python_FOUND
#endif
#define SCRIPT_DIR "@OBS_SCRIPT_PLUGIN_PATH@"
#define PYTHON_LIB "@OBS_SCRIPT_PYTHON_PATH@"
#define UI_ENABLED @ENABLE_UI@