Skip to content

Commit

Permalink
spdlog
Browse files Browse the repository at this point in the history
  • Loading branch information
milanzlicic committed Apr 12, 2024
1 parent 1af0b0d commit 6f0651c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ target_include_directories(${PROJECT_NAME}Utility SYSTEM PRIVATE ${CMAKE_PREFIX_
target_include_directories(${PROJECT_NAME}Utility PUBLIC $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}> $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>)
set_target_properties(${PROJECT_NAME}Utility PROPERTIES INSTALL_RPATH "$ORIGIN")
set_target_properties(${PROJECT_NAME}Utility PROPERTIES VERSION ${WOLKSDK_VERSION_STRING} SOVERSION ${WOLKSDK_VERSION_MAJOR}.${WOLKSDK_VERSION_MINOR}.${WOLKSDK_VERSION_PATCH})
add_dependencies(${PROJECT_NAME}Utility libspdlog)
add_dependencies(${PROJECT_NAME}Utility spdlog)

list(APPEND INSTALL_TARGETS ${PROJECT_NAME}Utility)

Expand Down
4 changes: 2 additions & 2 deletions dependencies/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ set(AWS_SDK_VERSION "1.8.173")
set(NLOHMANN_JSON_VERSION "3.7.3")
set(JSON_SCHEMA_VERSION "2.1.0")

if (NOT TARGET libspdlog)
ExternalProject_Add(libspdlog
if (NOT TARGET spdlog)
ExternalProject_Add(spdlog
GIT_REPOSITORY "https://github.com/gabime/spdlog"
GIT_TAG "v${SPDLOG_VERSION}"
CMAKE_ARGS
Expand Down

0 comments on commit 6f0651c

Please sign in to comment.