]> www.wagner.pp.ru Git - openssl-gost/engine.git/commit
Correct CMake files installation path
authorCraig Andrews <candrews@integralblue.com>
Tue, 3 Jan 2023 22:42:02 +0000 (17:42 -0500)
committerDmitry Belyavskiy <beldmit@users.noreply.github.com>
Thu, 5 Jan 2023 20:53:46 +0000 (23:53 +0300)
commit2b22503cf83c56f27719eccce013999203e69db0
tree08ac5849fabe774b427f61d9126ddf92ccd2a41e
parentebf9c1fec3c58cdf7e2b56220d384ab90647f966
Correct CMake files installation path

install(EXPORT GostEngineConfig DESTINATION share/cmake/GostEngine) will to a path like this:
/usr/GostEngine/share/cmake/GostEngine/GostEngineConfig.cmake
which is not standard or expected. These files should be installed to:
/usr/share/cmake/GostEngine/GostEngineConfig.cmake
which can be done by changing the installation line to:
install(EXPORT GostEngineConfig DESTINATION share/cmake/GostEngine)
CMakeLists.txt