1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-06 17:41:04 +00:00

Fix two CMake build issues

* PostgreSQL fallback code missed the includes (closes #11219)
* build failed when Freetype enabled but not found
This commit is contained in:
sfan5 2021-04-21 20:25:18 +02:00
parent daf862a38a
commit 3e2145d662
2 changed files with 2 additions and 1 deletions

View file

@ -152,6 +152,7 @@ if(ENABLE_POSTGRESQL)
# but we don't need them, so continue anyway if only those are missing.
if(PostgreSQL_INCLUDE_DIR AND PostgreSQL_LIBRARY)
set(PostgreSQL_FOUND TRUE)
set(PostgreSQL_INCLUDE_DIRS ${PostgreSQL_INCLUDE_DIR})
endif()
else()
find_package(PostgreSQL)