summaryrefslogtreecommitdiff
path: root/osx
diff options
context:
space:
mode:
Diffstat (limited to 'osx')
-rw-r--r--osx/janTestLib/janTestLib.h13
-rw-r--r--osx/janTestLib/janTestLib.m13
-rw-r--r--osx/jantest/LibMain.cpp15
-rw-r--r--osx/jantest/UnittestMain.cpp15
4 files changed, 56 insertions, 0 deletions
diff --git a/osx/janTestLib/janTestLib.h b/osx/janTestLib/janTestLib.h
new file mode 100644
index 000000000000..ecd13097d6fb
--- /dev/null
+++ b/osx/janTestLib/janTestLib.h
@@ -0,0 +1,13 @@
+//
+// janTestLib.h
+// janTestLib
+//
+// Created by Jan Iversen on 29/01/2017.
+// Copyright © 2017 Jan Iversen. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+
+@interface janTestLib : NSObject
+
+@end
diff --git a/osx/janTestLib/janTestLib.m b/osx/janTestLib/janTestLib.m
new file mode 100644
index 000000000000..365103e2efee
--- /dev/null
+++ b/osx/janTestLib/janTestLib.m
@@ -0,0 +1,13 @@
+//
+// janTestLib.m
+// janTestLib
+//
+// Created by Jan Iversen on 29/01/2017.
+// Copyright © 2017 Jan Iversen. All rights reserved.
+//
+
+#import "janTestLib.h"
+
+@implementation janTestLib
+
+@end
diff --git a/osx/jantest/LibMain.cpp b/osx/jantest/LibMain.cpp
new file mode 100644
index 000000000000..20a59c3b86ff
--- /dev/null
+++ b/osx/jantest/LibMain.cpp
@@ -0,0 +1,15 @@
+//
+// main.cpp
+// jantest
+//
+// Created by Jan Iversen on 29/01/2017.
+// Copyright © 2017 Jan Iversen. All rights reserved.
+//
+
+#include <iostream>
+
+int main(int argc, const char * argv[]) {
+ // insert code here...
+ std::cout << "Hello, World!\n";
+ return 0;
+}
diff --git a/osx/jantest/UnittestMain.cpp b/osx/jantest/UnittestMain.cpp
new file mode 100644
index 000000000000..20a59c3b86ff
--- /dev/null
+++ b/osx/jantest/UnittestMain.cpp
@@ -0,0 +1,15 @@
+//
+// main.cpp
+// jantest
+//
+// Created by Jan Iversen on 29/01/2017.
+// Copyright © 2017 Jan Iversen. All rights reserved.
+//
+
+#include <iostream>
+
+int main(int argc, const char * argv[]) {
+ // insert code here...
+ std::cout << "Hello, World!\n";
+ return 0;
+}