Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
filippobrizzi committed Mar 12, 2024
1 parent 3916fdb commit ca8eebe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion cmake/external.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ macro(add_cmake_dependency)
add_dummy_target(${TARGET_ARG_NAME})
else()
message(STATUS " ${TARGET_ARG_NAME}: Building ${TARGET_ARG_VERSION} from source")
if (TARGET_ARG_GIT_REPOSITORY)
if(TARGET_ARG_GIT_REPOSITORY)
ExternalProject_Add(
${TARGET_ARG_NAME}
DEPENDS ${TARGET_ARG_DEPENDS}
Expand Down
10 changes: 2 additions & 8 deletions external/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,12 @@ if(zenohd IN_LIST EXTERNAL_PROJECTS_LIST)
endif()

set(GIT_TAG "10176b911096cb92b8ee46bc491b78079ee26c20")
add_cmake_dependency(
NAME zenohc
DEPENDS zenohd
URL "https://github.com/eclipse-zenoh/zenoh-c/archive/${GIT_TAG}.zip"

)
add_cmake_dependency(NAME zenohc DEPENDS zenohd URL "https://github.com/eclipse-zenoh/zenoh-c/archive/${GIT_TAG}.zip")

set(GIT_TAG "c0b7adb077cbf0b7b0cd04addb6de741b338fc49")
add_cmake_dependency(
NAME zenohcxx
DEPENDS zenohc
URL "https://github.com/eclipse-zenoh/zenoh-cpp/archive/${GIT_TAG}.zip"
DEPENDS zenohc URL "https://github.com/eclipse-zenoh/zenoh-cpp/archive/${GIT_TAG}.zip"
SOURCE_SUBDIR install
)

Expand Down

0 comments on commit ca8eebe

Please sign in to comment.