diff options
| author | Kevin Lu <6320810+kevinlul@users.noreply.github.com> | 2020-04-15 00:25:54 -0400 |
|---|---|---|
| committer | Kevin Lu <6320810+kevinlul@users.noreply.github.com> | 2020-04-15 00:25:54 -0400 |
| commit | 95c2771fcee2b93a790dd9bff86c36f369151984 (patch) | |
| tree | 7e006fed592888378c3af52180efdf49cee2be57 | |
| parent | 1e19af09e53e5f306ed89c2033817a21e5ee0bcf (diff) | |
| download | vcpkg-95c2771fcee2b93a790dd9bff86c36f369151984.tar.gz vcpkg-95c2771fcee2b93a790dd9bff86c36f369151984.zip | |
[Freetype] Actually prevent linking HarfBuzz on POSIX
Correctly fixes #10041
Fixes three typos in #10073
| -rw-r--r-- | ports/freetype/portfile.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/freetype/portfile.cmake b/ports/freetype/portfile.cmake index ad06263f9..9dcf76fa1 100644 --- a/ports/freetype/portfile.cmake +++ b/ports/freetype/portfile.cmake @@ -33,7 +33,7 @@ endif() set(OPTIONS) if (NOT VCPKG_TARGET_IS_WINDOWS) - list(APPEND OPTIONS -DFT_DISABLE_FIND_PACKAGE_Harfbuzz=TRUE) + list(APPEND OPTIONS -DCMAKE_DISABLE_FIND_PACKAGE_HarfBuzz=ON) endif() vcpkg_configure_cmake( |
