summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2023-07-10 23:01:58 +0800
committerruki <[email protected]>2023-07-10 23:01:58 +0800
commit156be4bc270fe164e15693389c83277b4e49c195 (patch)
tree9f0241aa9376ee3caef5014e058b4e666459abb8
parent23b7722256773b42a8219addac2e734d86c422fc (diff)
find swift-frontend
-rw-r--r--xmake/modules/detect/tools/find_swift_frontend.lua46
-rw-r--r--xmake/modules/detect/tools/find_swiftc.lua8
2 files changed, 46 insertions, 8 deletions
diff --git a/xmake/modules/detect/tools/find_swift_frontend.lua b/xmake/modules/detect/tools/find_swift_frontend.lua
new file mode 100644
index 000000000..7fb64d256
--- /dev/null
+++ b/xmake/modules/detect/tools/find_swift_frontend.lua
@@ -0,0 +1,46 @@
+--!A cross-platform build utility based on Lua
+--
+-- Licensed under the Apache License, Version 2.0 (the "License");
+-- you may not use this file except in compliance with the License.
+-- You may obtain a copy of the License at
+--
+-- http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing, software
+-- distributed under the License is distributed on an "AS IS" BASIS,
+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+-- See the License for the specific language governing permissions and
+-- limitations under the License.
+--
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
+--
+-- @author ruki
+-- @file find_swift_frontend.lua
+--
+
+-- imports
+import("lib.detect.find_program")
+import("lib.detect.find_programver")
+
+-- find swift_frontend
+--
+-- @param opt the argument options, e.g. {version = true}
+--
+-- @return program, version
+--
+-- @code
+--
+-- local swift_frontend = find_swift_frontend()
+-- local swift_frontend, version = find_swift_frontend({program = "xcrun -sdk macosx swift-frontend", version = true})
+--
+-- @endcode
+--
+function main(opt)
+ opt = opt or {}
+ local program = find_program(opt.program or "swift-frontend", opt)
+ local version = nil
+ if program and opt and opt.version then
+ version = find_programver(program, opt)
+ end
+ return program, version
+end
diff --git a/xmake/modules/detect/tools/find_swiftc.lua b/xmake/modules/detect/tools/find_swiftc.lua
index cffefe81b..6b8db8af2 100644
--- a/xmake/modules/detect/tools/find_swiftc.lua
+++ b/xmake/modules/detect/tools/find_swiftc.lua
@@ -36,19 +36,11 @@ import("lib.detect.find_programver")
-- @endcode
--
function main(opt)
-
- -- init options
opt = opt or {}
-
- -- find program
local program = find_program(opt.program or "swiftc", opt)
-
- -- find program version
local version = nil
if program and opt and opt.version then
version = find_programver(program, opt)
end
-
- -- ok?
return program, version
end