Skip to content

Commit

Permalink
remove traces of pub_cache and querying_subscriber from cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisBiryukov91 committed Dec 10, 2024
1 parent 5b5bcdb commit 64f9c91
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,8 @@ foreach(file ${files})
if(NOT(ZENOHC_BUILD_WITH_UNSTABLE_API))
if(
(${target} MATCHES "^.*_liveliness.*$")
OR (${target} MATCHES "^.*_pub_cache.*$")
OR (${target} MATCHES "^.*_advanced_sub.*$")
OR (${target} MATCHES "^.*_advanced_pub.*$")
OR (${target} MATCHES "^.*_query_sub.*$")
OR (${target} MATCHES "^.*_querier.*$")
)
continue()
Expand Down
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ foreach(file ${files})

# Exclude Liveliness and zenoh-ext tests if unstable api feature is disabled
if(NOT(ZENOHC_BUILD_WITH_UNSTABLE_API))
if((${target} MATCHES "^.*_liveliness.*$") OR (${target} MATCHES "^.*_query_sub_test.*$"))
if(${target} MATCHES "^.*_liveliness.*$")
continue()
endif()
endif()
Expand Down

0 comments on commit 64f9c91

Please sign in to comment.