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 37c3d4f commit 284e84eCopy full SHA for 284e84e
.github/workflows/L2-tests.yml
@@ -338,6 +338,7 @@ jobs:
338
-DCMAKE_DISABLE_FIND_PACKAGE_RBus=ON
339
-DPLUGIN_AVINPUT=OFF
340
-DPLUGIN_AVOUTPUT=OFF
341
+ -DPLUGIN_DUMMY=ON
342
-DAVOUTPUT_TV=OFF
343
-DUSE_THUNDER_R4=ON
344
-DPLUGIN_L2Tests=ON
Tests/L2Tests/CMakeLists.txt
@@ -21,8 +21,10 @@ set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})
21
set(THUNDER_PORT 9998)
22
23
find_package(${NAMESPACE}Plugins REQUIRED)
24
-
25
-set(SRC_FILES tests/test_foo_IN.cpp)
+if(PLUGIN_DUMMY)
+ set(SRC_FILES ${SRC_FILES} tests/test_foo_IN.cpp)
26
+endif()
27
+# set(SRC_FILES tests/test_foo_IN.cpp)
28
29
if(PLUGIN_AVOUTPUT)
30
set(SRC_FILES ${SRC_FILES} tests/AVOutputTV_L2Test.cpp)
0 commit comments