From: Sergei Lemeshkin Date: Wed, 17 Mar 2021 12:28:30 +0000 (+0300) Subject: Make it compatible with cmake versions lower than 3.14, specify explicitly destinatio... X-Git-Tag: v3.0.0~31 X-Git-Url: http://www.wagner.pp.ru/gitweb/?a=commitdiff_plain;h=9812e2735188c354c8bd405d1bde4225800cef62;p=openssl-gost%2Fengine.git Make it compatible with cmake versions lower than 3.14, specify explicitly destination paths --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 0fb7b6e..9768cca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -319,11 +319,11 @@ add_executable(test_tlstree test_tlstree.c) target_link_libraries(test_tlstree PUBLIC ${OPENSSL_CRYPTO_LIBRARY}) # install programs and manuals -install(TARGETS gostsum gost12sum) +install(TARGETS gostsum gost12sum RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) install(FILES gostsum.1 gost12sum.1 DESTINATION ${CMAKE_INSTALL_DIR}/man1) # install engine in library and module form -install(TARGETS lib_gost_engine EXPORT GostEngineConfig) +install(TARGETS lib_gost_engine EXPORT GostEngineConfig LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}) install(TARGETS gost_engine EXPORT GostEngineConfig LIBRARY DESTINATION ${OPENSSL_ENGINES_DIR} RUNTIME DESTINATION ${OPENSSL_ENGINES_DIR})