CMake: fix for missing utf8proc with unbundled build, resolves #4798 (#4816)

* fix(cmake): Add missing install and find dependency for utf8proc in unbundled build.

* chore(gitignore): Corrected path to Qt creator generated build files.
This commit is contained in:
Matej Kenda
2024-12-11 16:18:04 +01:00
committed by GitHub
parent e2576ff5ab
commit b380b57d5d
3 changed files with 4 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ if(@POCO_UNBUNDLED@)
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")