2017-12-25 14:09:11 -08:00
|
|
|
#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
|
|
|
|
|
2023-03-26 03:55:25 +02:00
|
|
|
#ifndef LUAJIT_FOUND
|
2022-02-14 18:46:40 +01:00
|
|
|
#cmakedefine LUAJIT_FOUND
|
2023-03-26 03:55:25 +02:00
|
|
|
#endif
|
|
|
|
#ifndef Python_FOUND
|
2022-02-14 18:46:40 +01:00
|
|
|
#cmakedefine Python_FOUND
|
2023-03-26 03:55:25 +02:00
|
|
|
#endif
|
2022-02-14 18:46:40 +01:00
|
|
|
|
2018-01-16 03:55:38 -08:00
|
|
|
#define SCRIPT_DIR "@OBS_SCRIPT_PLUGIN_PATH@"
|
2022-02-14 18:46:40 +01:00
|
|
|
#define PYTHON_LIB "@OBS_SCRIPT_PYTHON_PATH@"
|
|
|
|
|
|
|
|
#define UI_ENABLED @ENABLE_UI@
|