From ec6fd4eeca3fa468cffb25b472eb349c1fed06aa Mon Sep 17 00:00:00 2001 From: ruki Date: Mon, 22 Feb 2016 08:49:20 +0800 Subject: modify tests script --- tests/swift_console/src/main.swift | 3 --- tests/swift_console/xmake.lua | 32 -------------------------------- 2 files changed, 35 deletions(-) delete mode 100755 tests/swift_console/src/main.swift delete mode 100755 tests/swift_console/xmake.lua (limited to 'tests/swift_console') diff --git a/tests/swift_console/src/main.swift b/tests/swift_console/src/main.swift deleted file mode 100755 index ee21045f4..000000000 --- a/tests/swift_console/src/main.swift +++ /dev/null @@ -1,3 +0,0 @@ -import Foundation - -print("hello world!") diff --git a/tests/swift_console/xmake.lua b/tests/swift_console/xmake.lua deleted file mode 100755 index 68f822d8f..000000000 --- a/tests/swift_console/xmake.lua +++ /dev/null @@ -1,32 +0,0 @@ --- the debug mode -if is_mode("debug") then - - -- enable the debug symbols - set_symbols("debug") - - -- disable optimization - set_optimize("none") -end - --- the release mode -if is_mode("release") then - - -- set the symbols visibility: hidden - set_symbols("hidden") - - -- enable fastest optimization - set_optimize("fastest") - - -- strip all symbols - set_strip("all") -end - --- add target -target("swift_console") - - -- set kind - set_kind("binary") - - -- add files - add_files("src/*.swift") - -- cgit v1.3.1