1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:47:35 +00:00
serenity/Meta/Lagom/Contrib/MacPDF/main.mm
Nico Weber 0216f34179 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
2023-09-30 08:08:11 +02:00

16 lines
286 B
Text

//
// 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);
}