cmake: Fix issue with Harfbuzz not being found

This commit is contained in:
Jonathan Li 2020-05-08 18:23:01 +01:00
parent 9319ed1afb
commit 5a5dc7f67f
1 changed files with 2 additions and 2 deletions

View File

@ -195,8 +195,8 @@ endif()
find_package(HarfBuzz)
if(HARFBUZZ_FOUND)
include_directories(${HARFBUZZ_INCLUDE_DIRS})
if(HarfBuzz_FOUND)
include_directories(${HarfBuzz_INCLUDE_DIRS})
endif()
#----------------------------------------