mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 10:13:51 +01:00
b380b57d5d
* fix(cmake): Add missing install and find dependency for utf8proc in unbundled build. * chore(gitignore): Corrected path to Qt creator generated build files.
10 lines
291 B
CMake
10 lines
291 B
CMake
if(@POCO_UNBUNDLED@)
|
|
include(CMakeFindDependencyMacro)
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}")
|
|
find_dependency(ZLIB REQUIRED)
|
|
find_dependency(PCRE2 REQUIRED)
|
|
find_dependency(Utf8Proc REQUIRED)
|
|
endif()
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/PocoFoundationTargets.cmake")
|