mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
feat: add find package libdir and lib
This commit is contained in:
parent
ea49d6b33b
commit
f53d4bbf89
@ -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
|
||||
|
@ -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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user