summaryrefslogtreecommitdiff
path: root/tests/projects/console_objc/test.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/console_objc/test.lua')
-rw-r--r--tests/projects/console_objc/test.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/projects/console_objc/test.lua b/tests/projects/console_objc/test.lua
new file mode 100644
index 000000000..be0449702
--- /dev/null
+++ b/tests/projects/console_objc/test.lua
@@ -0,0 +1,11 @@
+-- imports
+import("..build")
+
+-- main entry
+function main()
+
+ -- build project
+ if os.host() == "macosx" then
+ build({iphoneos = true})
+ end
+end