summaryrefslogtreecommitdiff
path: root/tests/projects
diff options
context:
space:
mode:
authorruki <[email protected]>2018-08-24 23:55:06 +0800
committerruki <[email protected]>2018-08-24 17:30:39 +0800
commitf0fe86cec304f73c78f97356968f91be033026fa (patch)
tree5a44aa9b8fa238951ddc991fa78b9a3403c1d622 /tests/projects
parente7bae1207a1b97850eeaffe05b67df8a8f1526dc (diff)
fix dlang has_flags bug
Diffstat (limited to 'tests/projects')
-rw-r--r--tests/projects/dlang/static_library/test.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/projects/dlang/static_library/test.lua b/tests/projects/dlang/static_library/test.lua
new file mode 100644
index 000000000..ba71889a5
--- /dev/null
+++ b/tests/projects/dlang/static_library/test.lua
@@ -0,0 +1,11 @@
+-- imports
+import("...build")
+
+-- main entry
+function main()
+
+ -- build project
+ if os.host() == "macosx" then
+ build()
+ end
+end