summaryrefslogtreecommitdiff
path: root/xmake/modules
diff options
context:
space:
mode:
authorruki <[email protected]>2025-04-06 16:36:21 +0800
committerGitHub <[email protected]>2025-04-06 16:36:21 +0800
commit0d0e484cfe2d2c325593555642d6482eff334cbc (patch)
tree9869ed8a82e2256d8e3db8af432ec373be2f8b39 /xmake/modules
parent4aae3d65b4d77cd045f337d7bbd011b41e580a8c (diff)
parentc9f654105819ac41e927ad89d3a972ed0a77b2d9 (diff)
Merge pull request #6279 from star-hengxing/midl
Add msvc midl support
Diffstat (limited to 'xmake/modules')
-rw-r--r--xmake/modules/detect/tools/find_midl.lua60
1 files changed, 60 insertions, 0 deletions
diff --git a/xmake/modules/detect/tools/find_midl.lua b/xmake/modules/detect/tools/find_midl.lua
new file mode 100644
index 000000000..a8b7c6119
--- /dev/null
+++ b/xmake/modules/detect/tools/find_midl.lua
@@ -0,0 +1,60 @@
+--!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_midl.lua
+--
+
+-- imports
+import("core.project.config")
+import("lib.detect.find_program")
+import("lib.detect.find_programver")
+
+-- find midl
+--
+-- @param opt the argument options, e.g. {version = true}
+--
+-- @return program, version
+--
+-- @code
+-- local midl = find_midl()
+-- @endcode
+--
+function main(opt)
+ opt = opt or {}
+ opt.check = opt.check or "/confirm"
+ opt.command = opt.command or "/confirm"
+ opt.parse = opt.parse or function (output) return output:match("Version (%d+%.%d+%.%d+)%s") end
+
+ local envs = opt.envs
+ if envs and envs.WindowsSdkDir and envs.WindowsSDKVersion then
+ local toolchain = opt.toolchain
+ local arch = toolchain and toolchain:arch() or config.arch()
+ local bindir = path.join(envs.WindowsSdkDir, "bin", envs.WindowsSDKVersion, arch)
+ if os.isdir(bindir) then
+ opt.paths = opt.paths or {}
+ table.insert(opt.paths, bindir)
+ end
+ end
+
+ local program = find_program(opt.program or "midl", opt)
+
+ local version = nil
+ if program and opt and opt.version then
+ version = find_programver(program, opt)
+ end
+ return program, version
+end