mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 12:19:00 +08:00
b286cd50dd
* Patch libraw-local FindLCMS2.cmake to handle debug postfix * Remove library statement from def as name is incorrect for debug builds https://msdn.microsoft.com/en-us/library/d91k01sh.aspx claims it is required, but works fine (better) without. * Patch FindLibRaw.cmake to handle debug postfix * [lcms] Use vcpkg_from_github()'s PATCHES parameter
40 lines
1.1 KiB
Diff
40 lines
1.1 KiB
Diff
--- a/cmake/modules/FindLibRaw.cmake 2016-11-02 07:09:50.000000000 +0100
|
|
+++ b/cmake/modules/FindLibRaw.cmake 2018-06-02 02:50:10.501142400 +0200
|
|
@@ -31,18 +31,34 @@
|
|
PATH_SUFFIXES libraw
|
|
)
|
|
|
|
-FIND_LIBRARY(LibRaw_LIBRARIES NAMES raw
|
|
+FIND_LIBRARY(LibRaw_LIBRARY_RELEASE NAMES raw
|
|
HINTS
|
|
${PC_LIBRAW_LIBDIR}
|
|
${PC_LIBRAW_LIBRARY_DIRS}
|
|
)
|
|
|
|
-FIND_LIBRARY(LibRaw_r_LIBRARIES NAMES raw_r
|
|
+FIND_LIBRARY(LibRaw_LIBRARY_DEBUG NAMES rawd
|
|
+ HINTS
|
|
+ ${PC_LIBRAW_LIBDIR}
|
|
+ ${PC_LIBRAW_LIBRARY_DIRS}
|
|
+ )
|
|
+
|
|
+select_library_configurations(LibRaw)
|
|
+
|
|
+FIND_LIBRARY(LibRaw_r_LIBRARY_RELEASE NAMES raw_r
|
|
HINTS
|
|
${PC_LIBRAW_R_LIBDIR}
|
|
${PC_LIBRAW_R_LIBRARY_DIRS}
|
|
)
|
|
|
|
+FIND_LIBRARY(LibRaw_r_LIBRARY_DEBUG NAMES raw_rd
|
|
+ HINTS
|
|
+ ${PC_LIBRAW_R_LIBDIR}
|
|
+ ${PC_LIBRAW_R_LIBRARY_DIRS}
|
|
+ )
|
|
+
|
|
+select_library_configurations(LibRaw_r)
|
|
+
|
|
IF(LibRaw_INCLUDE_DIR)
|
|
FILE(READ ${LibRaw_INCLUDE_DIR}/libraw_version.h _libraw_version_content)
|
|
|