summaryrefslogtreecommitdiff
path: root/ios/benchmark/main.m
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2015-05-05 11:38:27 +0200
committerKonstantin Käfer <mail@kkaefer.com>2015-05-05 11:53:20 +0200
commit24083c582c7308025ed05285ad9e82696c70658a (patch)
treebd77e509ea403eafe2e604eff4d18f246fd165aa /ios/benchmark/main.m
parent691c305467c5d503719743e69f73bf28f20894d5 (diff)
downloadqtlocation-mapboxgl-24083c582c7308025ed05285ad9e82696c70658a.tar.gz
[iOS] add benchmarking application
Diffstat (limited to 'ios/benchmark/main.m')
-rw-r--r--ios/benchmark/main.m10
1 files changed, 10 insertions, 0 deletions
diff --git a/ios/benchmark/main.m b/ios/benchmark/main.m
new file mode 100644
index 0000000000..52bb445552
--- /dev/null
+++ b/ios/benchmark/main.m
@@ -0,0 +1,10 @@
+#import <UIKit/UIKit.h>
+
+#import "MBXBenchAppDelegate.h"
+
+int main(int argc, char * argv[])
+{
+ @autoreleasepool {
+ return UIApplicationMain(argc, argv, nil, NSStringFromClass([MBXBenchAppDelegate class]));
+ }
+}