浏览代码

cmake: Add CMake option to disable building plugins

Closes jp9000/obs-studio#1070
Ryan Foster 8 年之前
父节点
当前提交
54ecfc8fe7
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      plugins/CMakeLists.txt

+ 5 - 0
plugins/CMakeLists.txt

@@ -1,3 +1,8 @@
+option(DISABLE_PLUGINS "Disable building of OBS plugins" OFF)
+if(DISABLE_PLUGINS)
+	message(STATUS "DISABLE_PLUGINS is set; building of plugins is disabled.")
+	return()
+endif()
 
 
 if(WIN32)
 if(WIN32)
 	option(BUILD_CA_ENCODER "Build CoreAudio encoder module" ON)
 	option(BUILD_CA_ENCODER "Build CoreAudio encoder module" ON)