obs-scripting-config.h.in 399 B

1234567891011121314151617181920212223242526272829
  1. #pragma once
  2. #ifndef TRUE
  3. #define TRUE 1
  4. #endif
  5. #ifndef ON
  6. #define ON 1
  7. #endif
  8. #ifndef FALSE
  9. #define FALSE 0
  10. #endif
  11. #ifndef OFF
  12. #define OFF 0
  13. #endif
  14. #ifndef LUAJIT_FOUND
  15. #cmakedefine LUAJIT_FOUND
  16. #endif
  17. #ifndef Python_FOUND
  18. #cmakedefine Python_FOUND
  19. #endif
  20. #define SCRIPT_DIR "@OBS_SCRIPT_PLUGIN_PATH@"
  21. #define PYTHON_LIB "@OBS_SCRIPT_PYTHON_PATH@"
  22. #define UI_ENABLED @ENABLE_UI@