this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Build GNUstep Opal as CoreGraphics

+10 -2
+6
.gitmodules
··· 172 172 [submodule "src/external/perl"] 173 173 path = src/external/perl 174 174 url = ../darling-perl.git 175 + [submodule "src/external/liblcms1"] 176 + path = src/external/liblcms1 177 + url = ../darling-liblcms1.git 178 + [submodule "src/external/coregraphics"] 179 + path = src/external/coregraphics 180 + url = ../darling-coregraphics.git
+2 -2
src/ApplicationServices/CMakeLists.txt
··· 10 10 SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) 11 11 SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) 12 12 13 - add_library(ApplicationServices SHARED dummy.c) 14 - target_link_libraries(ApplicationServices CoreServices) 13 + add_library(ApplicationServices SHARED $<TARGET_OBJECTS:coregraphics>) 14 + target_link_libraries(ApplicationServices system CoreServices lcms png12 gif tiff jpeg X11 Xext Xrender fontconfig cairo) 15 15 16 16 install(TARGETS ApplicationServices DESTINATION "${CMAKE_INSTALL_LIBDIR}/darling") 17 17
src/ApplicationServices/dummy.c

This is a binary file and will not be displayed.

+2
src/CMakeLists.txt
··· 119 119 add_subdirectory(external/file/file) 120 120 add_subdirectory(external/libxpc) 121 121 add_subdirectory(external/openssl_certificates) 122 + add_subdirectory(external/liblcms1) 123 + add_subdirectory(external/coregraphics) 122 124 123 125 if (NOT DARLING_NO_EXECUTABLES) 124 126 add_subdirectory(external/shell_cmds)