summaryrefslogtreecommitdiff
path: root/tests/projects/objc/bundle/src/test.m
diff options
context:
space:
mode:
authorruki <[email protected]>2020-04-04 13:01:11 +0800
committerruki <[email protected]>2020-04-04 13:04:06 +0800
commitdadee422f340ce6e96a7adbd64aa3941a2d31707 (patch)
tree899503fb7a2625eaaf12945259d809c3af684735 /tests/projects/objc/bundle/src/test.m
parentcc80eac1312bc54f4d6564f2a517a86aeccf5e8d (diff)
improve objc/objc++ build rules
Diffstat (limited to 'tests/projects/objc/bundle/src/test.m')
-rw-r--r--tests/projects/objc/bundle/src/test.m6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/projects/objc/bundle/src/test.m b/tests/projects/objc/bundle/src/test.m
new file mode 100644
index 000000000..84422f6a7
--- /dev/null
+++ b/tests/projects/objc/bundle/src/test.m
@@ -0,0 +1,6 @@
+#include "test.h"
+
+int add(int a, int b)
+{
+ return a + b;
+}