Skip to content

Commit 284e84e

Browse files
adding dummy macro
1 parent 37c3d4f commit 284e84e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/L2-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,7 @@ jobs:
338338
-DCMAKE_DISABLE_FIND_PACKAGE_RBus=ON
339339
-DPLUGIN_AVINPUT=OFF
340340
-DPLUGIN_AVOUTPUT=OFF
341+
-DPLUGIN_DUMMY=ON
341342
-DAVOUTPUT_TV=OFF
342343
-DUSE_THUNDER_R4=ON
343344
-DPLUGIN_L2Tests=ON

Tests/L2Tests/CMakeLists.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@ set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})
2121
set(THUNDER_PORT 9998)
2222

2323
find_package(${NAMESPACE}Plugins REQUIRED)
24-
25-
set(SRC_FILES tests/test_foo_IN.cpp)
24+
if(PLUGIN_DUMMY)
25+
set(SRC_FILES ${SRC_FILES} tests/test_foo_IN.cpp)
26+
endif()
27+
# set(SRC_FILES tests/test_foo_IN.cpp)
2628

2729
if(PLUGIN_AVOUTPUT)
2830
set(SRC_FILES ${SRC_FILES} tests/AVOutputTV_L2Test.cpp)

0 commit comments

Comments
 (0)