mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:47:35 +00:00

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
16 lines
286 B
Text
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);
|
|
}
|