1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 19:17:44 +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

@ -19,6 +19,20 @@
<string>LagomPDFDocument</string>
</dict>
</array>
<key>CFBundleExecutable</key>
<string>MacPDF</string>
<key>CFBundleIdentifier</key>
<string>org.serenityos.MacPDF</string>
<key>CFBundleName</key>
<string>MacPDF</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>LSMinimumSystemVersion</key>
<string>13.3</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSSupportsAutomaticTermination</key>
<true/>
<key>NSSupportsSuddenTermination</key>