1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:37:35 +00:00

MacPDF: Move some files around

1. main.m is now main.mm
2. MainMenu.xib is now no longer in a Base.lproj subfolder
3. Remove SerenityPDF.entitlements since it won't be used in our CMake
   build
This commit is contained in:
Nico Weber 2023-09-29 19:56:10 -04:00 committed by Andreas Kling
parent 5af30b8f63
commit 0216f34179
3 changed files with 0 additions and 10 deletions

View file

@ -0,0 +1,16 @@
//
// main.m
// SerenityPDF
//
// Created by Nico Weber on 7/22/23.
//
#import <Cocoa/Cocoa.h>
int main(int argc, char const* argv[])
{
@autoreleasepool {
// Setup code that might create autoreleased objects goes here.
}
return NSApplicationMain(argc, argv);
}