feat: add find package libdir and lib

This commit is contained in:
huangminhang 2022-03-04 23:05:33 +08:00
parent ea49d6b33b
commit f53d4bbf89
2 changed files with 8 additions and 1 deletions

View File

@ -596,7 +596,7 @@ configure_package_config_file(
${PROJECT_NAME}-config.cmake
INSTALL_DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}"
NO_CHECK_REQUIRED_COMPONENTS_MACRO
PATH_VARS CMAKE_INSTALL_INCLUDEDIR
PATH_VARS CMAKE_INSTALL_INCLUDEDIR CMAKE_INSTALL_LIBDIR CIVETWEB_ENABLE_CXX
)
write_basic_package_version_file(${PROJECT_NAME}-config-version.cmake

View File

@ -2,6 +2,13 @@
include(CMakeFindDependencyMacro)
set_and_check(civetweb_INCLUDE_DIR "@PACKAGE_CMAKE_INSTALL_INCLUDEDIR@")
set_and_check(civetweb_INCLUDE_DIRS "@PACKAGE_CMAKE_INSTALL_INCLUDEDIR@")
set_and_check(civetweb_LIBRARY_DIRS "@PACKAGE_CMAKE_INSTALL_LIBDIR@")
set(civetweb_LIBRARIES civetweb)
if(@CIVETWEB_ENABLE_CXX@)
set(civetweb-cpp_LIBRARIES civetweb-cpp)
endif()
find_dependency(Threads)