Changeset 285734 in webkit
- Timestamp:
- Nov 12, 2021, 11:50:24 AM (5 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
ChangeLog (modified) (1 diff)
-
Source/WebCore/CMakeLists.txt (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/PlatformGTK.cmake (modified) (1 diff)
-
Source/WebCore/PlatformWPE.cmake (modified) (1 diff)
-
Source/cmake/OptionsWinCairo.cmake (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r285652 r285734 1 2021-11-12 Don Olmstead <don.olmstead@sony.com> 2 3 [WinCairo] Add Little-CMS support 4 https://bugs.webkit.org/show_bug.cgi?id=233024 5 6 Reviewed by Michael Catanzaro. 7 8 Search for LCMS2 and if its present turn it on for WinCairo. 9 10 * Source/cmake/OptionsWinCairo.cmake: 11 1 12 2021-11-11 Michael Catanzaro <mcatanzaro@gnome.org> 2 13 -
trunk/Source/WebCore/CMakeLists.txt
r285652 r285734 1937 1937 endif () 1938 1938 1939 if (USE_LCMS) 1940 list(APPEND WebCore_LIBRARIES LCMS2::LCMS2) 1941 endif () 1942 1939 1943 if (USE_WOFF2) 1940 1944 list(APPEND WebCore_LIBRARIES WOFF2::dec) -
trunk/Source/WebCore/ChangeLog
r285732 r285734 1 2021-11-12 Don Olmstead <don.olmstead@sony.com> 2 3 [WinCairo] Add Little-CMS support 4 https://bugs.webkit.org/show_bug.cgi?id=233024 5 6 Reviewed by Michael Catanzaro. 7 8 Centralize addition of LCMS2::LCMS2 to the root CMakeLists in WebCore. 9 10 * CMakeLists.txt: 11 * PlatformGTK.cmake: 12 * PlatformWPE.cmake: 13 1 14 2021-11-12 Rob Buis <rbuis@igalia.com> 2 15 -
trunk/Source/WebCore/PlatformGTK.cmake
r283707 r285734 104 104 ) 105 105 106 if (USE_LCMS)107 list(APPEND WebCore_LIBRARIES108 LCMS2::LCMS2109 )110 endif ()111 112 106 if (USE_WPE_RENDERER) 113 107 list(APPEND WebCore_LIBRARIES -
trunk/Source/WebCore/PlatformWPE.cmake
r282307 r285734 77 77 ) 78 78 79 if (USE_LCMS)80 list(APPEND WebCore_LIBRARIES81 LCMS2::LCMS282 )83 endif ()84 85 79 if (USE_WPE_VIDEO_PLANE_DISPLAY_DMABUF OR USE_WPEBACKEND_FDO_AUDIO_EXTENSION) 86 80 list(APPEND WebCore_LIBRARIES ${WPEBACKEND_FDO_LIBRARIES}) -
trunk/Source/cmake/OptionsWinCairo.cmake
r285146 r285734 22 22 23 23 # Optional packages 24 find_package(LCMS2) 25 if (LCMS2_FOUND) 26 SET_AND_EXPOSE_TO_BUILD(USE_LCMS ON) 27 endif () 28 24 29 find_package(OpenJPEG 2.3.1) 25 30 if (OpenJPEG_FOUND)
Note:
See TracChangeset
for help on using the changeset viewer.