summaryrefslogtreecommitdiff
path: root/xmake/rules
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/rules
parent4aae3d65b4d77cd045f337d7bbd011b41e580a8c (diff)
parentc9f654105819ac41e927ad89d3a972ed0a77b2d9 (diff)
Merge pull request #6279 from star-hengxing/midl
Add msvc midl support
Diffstat (limited to 'xmake/rules')
-rw-r--r--xmake/rules/platform/windows/idl/xmake.lua64
-rw-r--r--xmake/rules/platform/xmake.lua1
2 files changed, 65 insertions, 0 deletions
diff --git a/xmake/rules/platform/windows/idl/xmake.lua b/xmake/rules/platform/windows/idl/xmake.lua
new file mode 100644
index 000000000..0381658ec
--- /dev/null
+++ b/xmake/rules/platform/windows/idl/xmake.lua
@@ -0,0 +1,64 @@
+--!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 xmake.lua
+--
+
+-- add *.idl for rc file
+rule("platform.windows.idl")
+ set_extensions(".idl")
+
+ on_config(function (target)
+ local autogendir = path.join(target:autogendir(), "platform/windows/idl")
+ os.mkdir(autogendir)
+ target:add("includedirs", autogendir, {public = true})
+ end)
+
+ before_buildcmd_file(function (target, batchcmds, sourcefile, opt)
+ import("lib.detect.find_tool")
+
+ local msvc = target:toolchain("msvc") or target:toolchain("clang-cl") or target:toolchain("clang")
+ local midl = assert(find_tool("midl", {envs = msvc:runenvs(), toolchain = msvc}), "midl not found!")
+
+ local name = path.basename(sourcefile)
+ local autogendir = path.join(target:autogendir(), "platform/windows/idl")
+
+ local flags = {"/nologo"}
+ table.join2(flags, table.wrap(target:values("idl.flags")))
+ table.join2(flags, {
+ "/out", path(autogendir),
+ "/header", name .. ".h",
+ "/iid", name .. "_i.c",
+ "/proxy", name .. "_p.c",
+ "/tlb", name .. ".tlb",
+ path(sourcefile)
+ })
+
+ batchcmds:show_progress(opt.progress, "${color.build.object}compiling.idl %s", sourcefile)
+ batchcmds:vrunv(midl.program, flags, {envs = msvc:runenvs()})
+
+ local iid_file = path.join(autogendir, name .. "_i.c")
+ local objectfile = target:objectfile(iid_file)
+ table.insert(target:objectfiles(), objectfile)
+
+ batchcmds:show_progress(opt.progress, "${color.build.object}compiling.$(mode) %s", iid_file)
+ batchcmds:compile(iid_file, objectfile)
+
+ batchcmds:add_depfiles(sourcefile, iid_file)
+ batchcmds:set_depmtime(os.mtime(objectfile))
+ batchcmds:set_depcache(target:dependfile(objectfile))
+ end)
diff --git a/xmake/rules/platform/xmake.lua b/xmake/rules/platform/xmake.lua
index f0806cffd..0cf18af90 100644
--- a/xmake/rules/platform/xmake.lua
+++ b/xmake/rules/platform/xmake.lua
@@ -24,6 +24,7 @@ rule("platform.wasm")
rule("platform.windows")
add_deps("platform.windows.def")
+ add_deps("platform.windows.idl")
if is_host("windows") then
add_deps("platform.windows.manifest")
end