1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 03:17:34 +00:00

MacPDF: Make buildable from CMake

Use `Meta/serenity.sh build lagom MacPDF` to build, and either of
`open Build/lagom/bin/MacPDF.app` or
`Build/lagom/bin/MacPDF.app/Contents/MacOS/MacPDF` to run.

Xcode used to insert a bunch of things to Info.plist. Now it can
no longer do that, so manually put them there
This commit is contained in:
Nico Weber 2023-09-29 19:59:22 -04:00 committed by Andreas Kling
parent 0216f34179
commit 91e0438fca
3 changed files with 73 additions and 0 deletions

View file

@ -534,6 +534,10 @@ if (BUILD_LAGOM)
add_serenity_subdirectory(Ladybird)
endif()
if (APPLE)
add_serenity_subdirectory(Meta/Lagom/Contrib/MacPDF)
endif()
add_executable(icc ../../Userland/Utilities/icc.cpp)
target_link_libraries(icc LibCore LibGfx LibMain)