From afe61df277729582c495c81a432a51f287365008 Mon Sep 17 00:00:00 2001 From: Don Smyth Date: Fri, 2 Mar 2018 13:31:17 -0800 Subject: [PATCH] Fix case of generated dateConfig so it will work on a case sensitive filesystem --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c94c567..85188b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -95,8 +95,8 @@ else() set(DEF_INSTALL_CMAKE_DIR lib/cmake/date) endif() -install( TARGETS date_interface EXPORT DateConfig ) -install( EXPORT DateConfig DESTINATION ${DEF_INSTALL_CMAKE_DIR} ) +install( TARGETS date_interface EXPORT dateConfig ) +install( EXPORT dateConfig DESTINATION ${DEF_INSTALL_CMAKE_DIR} ) install( TARGETS tz DESTINATION lib ) install( DIRECTORY ${HEADER_FOLDER}/ DESTINATION include/ )