mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 08:29:01 +08:00
19 lines
699 B
Diff
19 lines
699 B
Diff
|
--- a/CMake/FindLibHaru.cmake Mon Jun 26 15:29:04 2017
|
||
|
+++ b/CMake/FindLibHaru.cmake Wed Aug 16 09:30:12 2017
|
||
|
@@ -19,9 +19,13 @@
|
||
|
|
||
|
find_path(LIBHARU_INCLUDE_DIR hpdf.h)
|
||
|
|
||
|
-find_library(LIBHARU_LIBRARY NAMES hpdf)
|
||
|
+find_library(LIBHARU_LIBRARY_RELEASE NAMES hpdf libhpdf)
|
||
|
+find_library(LIBHARU_LIBRARY_DEBUG NAMES hpdfd libhpdfd)
|
||
|
|
||
|
-# handle the QUIETLY and REQUIRED arguments and set FONTCONFIG_FOUND to TRUE if
|
||
|
+include(SelectLibraryConfigurations)
|
||
|
+select_library_configurations(LIBHARU)
|
||
|
+
|
||
|
+# handle the QUIETLY and REQUIRED arguments and set LIBHARU_FOUND to TRUE if
|
||
|
# all listed variables are TRUE
|
||
|
include(FindPackageHandleStandardArgs)
|
||
|
find_package_handle_standard_args(LibHaru DEFAULT_MSG
|