mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-25 06:25:56 +03:00
a7ec2c325e
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
16 lines
363 B
Objective-C
16 lines
363 B
Objective-C
//
|
|
// main.m
|
|
// desktopclient
|
|
//
|
|
// Created by Jocelyn Turcotte on 01/06/15.
|
|
//
|
|
//
|
|
|
|
// This is fake application bundle with the same bundle ID as the real desktop client.
|
|
// Xcode needs a wrapping application to allow the extension to be debugged.
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
int main(int argc, const char * argv[]) {
|
|
return NSApplicationMain(argc, argv);
|
|
}
|