Skip to content

Commit

Permalink
maybe a quotting issue?:
Browse files Browse the repository at this point in the history
  • Loading branch information
cwaldren-ld committed Oct 7, 2024
1 parent bdcc9c4 commit 61f1108
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ install(FILES
)

install(
EXPORT ${PROJECT_NAME}Targets
EXPORT "${PROJECT_NAME}Targets"
NAMESPACE "${PROJECT_NAME}::"
DESTINATION "${CMAKE_INSTALL_DATADIR}/cmake/${CMAKE_PROJECT_NAME}"
)
2 changes: 1 addition & 1 deletion cmake/rfc3339_timestamp.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ target_include_directories(timestamp PUBLIC
)
install(
TARGETS timestamp
EXPORT ${PROJECT_NAME}Targets
EXPORT "${PROJECT_NAME}Targets"
)
2 changes: 1 addition & 1 deletion libs/client-sdk/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ install(DIRECTORY "${LaunchDarklyCPPClient_SOURCE_DIR}/include/launchdarkly"

install(
TARGETS ${LIBNAME} OPTIONAL
EXPORT ${PROJECT_NAME}Targets
EXPORT "${PROJECT_NAME}Targets"
)
2 changes: 1 addition & 1 deletion libs/common/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,5 @@ target_compile_features(${LIBNAME} PUBLIC cxx_std_17)

install(
TARGETS ${LIBNAME}
EXPORT ${PROJECT_NAME}Targets
EXPORT "${PROJECT_NAME}Targets"
)
2 changes: 1 addition & 1 deletion libs/internal/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,5 @@ target_compile_features(${LIBNAME} PUBLIC cxx_std_17)

install(
TARGETS ${LIBNAME}
EXPORT ${PROJECT_NAME}Targets
EXPORT "${PROJECT_NAME}Targets"
)
2 changes: 1 addition & 1 deletion libs/server-sdk-redis-source/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ target_compile_features(${LIBNAME} PUBLIC cxx_std_17)

install(
TARGETS ${LIBNAME} OPTIONAL
EXPORT ${PROJECT_NAME}Targets
EXPORT "${PROJECT_NAME}Targets"
)
3 changes: 2 additions & 1 deletion libs/server-sdk/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,6 @@ target_compile_features(${LIBNAME} PUBLIC cxx_std_17)

install(
TARGETS ${LIBNAME} OPTIONAL
EXPORT ${PROJECT_NAME}Targets
EXPORT "${PROJECT_NAME}Targets"

)
2 changes: 1 addition & 1 deletion libs/server-sent-events/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ target_compile_features(${LIBNAME} PUBLIC cxx_std_17)

install(
TARGETS ${LIBNAME}
EXPORT ${PROJECT_NAME}Targets
EXPORT "${PROJECT_NAME}Targets"
)
2 changes: 1 addition & 1 deletion vendor/foxy/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -259,5 +259,5 @@ endif ()

install(
TARGETS foxy
EXPORT ${PROJECT_NAME}Targets
EXPORT "${PROJECT_NAME}Targets"
)
2 changes: 1 addition & 1 deletion vendor/foxy/cmake/certify.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ set(BUILD_TESTING ${PREVIOUS_BUILD_TESTING})

install(
TARGETS core
EXPORT ${PROJECT_NAME}Targets
EXPORT "${PROJECT_NAME}Targets"
)

0 comments on commit 61f1108

Please sign in to comment.