We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dafe3b2 commit 9bf76c3Copy full SHA for 9bf76c3
1 file changed
CMakeLists.txt
@@ -13,7 +13,7 @@ include(helpers)
13
14
add_library(obs-moq MODULE)
15
16
-if(NOT BUILD_PLUGIN)
+if(NOT ${BUILD_PLUGIN})
17
find_package(libobs REQUIRED)
18
endif()
19
target_link_libraries(obs-moq PRIVATE OBS::libobs)
@@ -73,7 +73,7 @@ target_sources(
73
src/moq-source.h
74
)
75
76
-if(BUILD_PLUGIN)
+if(${BUILD_PLUGIN})
77
set_target_properties_plugin(obs-moq PROPERTIES OUTPUT_NAME ${_name})
78
else()
79
set_target_properties_obs(obs-moq PROPERTIES FOLDER plugins PREFIX "")
0 commit comments