Skip to content

Commit

Permalink
CMake: fineftp now installs a fineftpConfigVersion.cmake file (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianReimold committed May 13, 2024
1 parent 3668eda commit b1172dc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion fineftp-server/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,15 @@ configure_package_config_file(
INSTALL_DESTINATION ${FINEFTP_INSTALL_CMAKE_DIR}
PATH_VARS FINEFTP_INSTALL_CMAKE_DIR
)
write_basic_package_version_file(
"${CMAKE_CURRENT_BINARY_DIR}/cmake_/fineftpConfigVersion.cmake"
VERSION ${PROJECT_VERSION}
COMPATIBILITY SameMajorVersion
)
install(
FILES "${CMAKE_CURRENT_BINARY_DIR}/cmake_/fineftpConfig.cmake"
FILES
"${CMAKE_CURRENT_BINARY_DIR}/cmake_/fineftpConfig.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/cmake_/fineftpConfigVersion.cmake"
DESTINATION ${FINEFTP_INSTALL_CMAKE_DIR}
COMPONENT fineftp_server_dev
)
Expand Down

0 comments on commit b1172dc

Please sign in to comment.