mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
17 lines
408 B
Objective-C
17 lines
408 B
Objective-C
//
|
|
// main.m
|
|
// desktopclient
|
|
//
|
|
// SPDX-FileCopyrightText: 2015 ownCloud GmbH
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
//
|
|
|
|
// 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);
|
|
}
|