Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Fixed install path
Browse files Browse the repository at this point in the history
  • Loading branch information
adobkin committed Feb 27, 2014
1 parent c62c108 commit 2747fe0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ IF(DEFINED WIN32)
ENDIF(MINGW)

FILE (GLOB OPENSSL_HEADER_FILES ${CMAKE_CURRENT_SOURCE_DIR}/win/thirdparty/openssl/include/openssl/*.h)
INSTALL(FILES ${OPENSSL_HEADER_FILES} DESTINATION ${CAPN_INSTALL_PATH_HEADERS}/openssl)
INSTALL(FILES ${OPENSSL_HEADER_FILES} DESTINATION ${CAPN_INSTALL_PATH_INCLUDES}/openssl)

INCLUDE_DIRECTORIES("${CMAKE_CURRENT_SOURCE_DIR}/win/thirdparty/openssl/include")
SET(OPENSSL_LIBRARIES "${CMAKE_CURRENT_SOURCE_DIR}/win/thirdparty/openssl/lib/ssleay32.lib")
Expand All @@ -184,6 +184,12 @@ IF(DEFINED WIN32)
${CMAKE_CURRENT_SOURCE_DIR}/win/thirdparty/openssl/bin/ssleay32.dll
${CMAKE_CURRENT_SOURCE_DIR}/win/thirdparty/openssl/bin/libeay32.dll
DESTINATION ${CAPN_INSTALL_PATH_BIN})

INSTALL(FILES
${CMAKE_CURRENT_SOURCE_DIR}/win/thirdparty/openssl/lib/ssleay32.lib
${CMAKE_CURRENT_SOURCE_DIR}/win/thirdparty/openssl/lib/libeay32.lib
DESTINATION ${CAPN_INSTALL_PATH_LIB})

INSTALL(FILES
${CMAKE_CURRENT_SOURCE_DIR}/README.md
${CMAKE_CURRENT_SOURCE_DIR}/LICENSE
Expand Down

0 comments on commit 2747fe0

Please sign in to comment.