summaryrefslogtreecommitdiff
path: root/xmake/plugins/project/utils/target_cmds.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2025-04-09 23:48:29 +0800
committerruki <[email protected]>2025-04-09 23:48:29 +0800
commit699e40f3e45469b3597f5fa24ad6bb2c922b8a4b (patch)
tree79de788dd4459a6cf1e26fb195f1561d98061e29 /xmake/plugins/project/utils/target_cmds.lua
parent260f07164381c235422ec7150e26396604fabdb5 (diff)
move rule_group to deprecated
Diffstat (limited to 'xmake/plugins/project/utils/target_cmds.lua')
-rw-r--r--xmake/plugins/project/utils/target_cmds.lua90
1 files changed, 0 insertions, 90 deletions
diff --git a/xmake/plugins/project/utils/target_cmds.lua b/xmake/plugins/project/utils/target_cmds.lua
index 835117d50..b18acb943 100644
--- a/xmake/plugins/project/utils/target_cmds.lua
+++ b/xmake/plugins/project/utils/target_cmds.lua
@@ -24,98 +24,8 @@ import("core.project.config")
import("core.base.hashset")
import("core.project.rule")
import("private.utils.batchcmds")
-import("private.utils.rule_groups")
import("private.action.build.target", {alias = "target_buildutils"})
--- this sourcebatch is built?
-function _sourcebatch_is_built(sourcebatch)
- -- we can only use rulename to filter them because sourcekind may be bound to multiple rules
- local rulename = sourcebatch.rulename
- if rulename == "c.build" or rulename == "c++.build"
- or rulename == "asm.build" or rulename == "cuda.build"
- or rulename == "objc.build" or rulename == "objc++.build"
- or rulename == "win.sdk.resource" then
- return true
- end
-end
-
--- get target buildcmd commands
-function get_target_buildcmd(target, cmds, opt)
- opt = opt or {}
- local suffix = opt.suffix
- local ignored_rules = hashset.from(opt.ignored_rules or {})
- for _, ruleinst in ipairs(target:orderules()) do
- if not ignored_rules:has(ruleinst:name()) then
- local scriptname = "buildcmd" .. (suffix and ("_" .. suffix) or "")
- local script = ruleinst:script(scriptname)
- if script then
- local batchcmds_ = batchcmds.new({target = target})
- script(target, batchcmds_, {})
- if not batchcmds_:empty() then
- table.join2(cmds, batchcmds_:cmds())
- end
- end
- end
- end
-end
-
--- get target buildcmd_files commands
-function get_target_buildcmd_files(target, cmds, sourcebatch, opt)
- opt = opt or {}
-
- -- get rule
- local rulename = assert(sourcebatch.rulename, "unknown rule for sourcebatch!")
- local ruleinst = assert(target:rule(rulename) or project.rule(rulename, {namespace = target:namespace()}) or
- rule.rule(rulename), "unknown rule: %s", rulename)
- local ignored_rules = hashset.from(opt.ignored_rules or {})
- if ignored_rules:has(ruleinst:name()) then
- return
- end
-
- -- generate commands for xx_buildcmd_files
- local suffix = opt.suffix
- local scriptname = "buildcmd_files" .. (suffix and ("_" .. suffix) or "")
- local script = ruleinst:script(scriptname)
- if script then
- local batchcmds_ = batchcmds.new({target = target})
- script(target, batchcmds_, sourcebatch, {})
- if not batchcmds_:empty() then
- table.join2(cmds, batchcmds_:cmds())
- end
- end
-
- -- generate commands for xx_buildcmd_file
- if not script then
- scriptname = "buildcmd_file" .. (suffix and ("_" .. suffix) or "")
- script = ruleinst:script(scriptname)
- if script then
- local sourcekind = sourcebatch.sourcekind
- for _, sourcefile in ipairs(sourcebatch.sourcefiles) do
- local batchcmds_ = batchcmds.new({target = target})
- script(target, batchcmds_, sourcefile, {})
- if not batchcmds_:empty() then
- table.join2(cmds, batchcmds_:cmds())
- end
- end
- end
- end
-end
-
--- get target buildcmd commands of source group
-function get_target_buildcmd_sourcegroups(target, cmds, sourcegroups, opt)
- for idx, group in irpairs(sourcegroups) do
- for _, item in pairs(group) do
- -- buildcmd scripts are always in rule, so we need to ignore target item (item.target).
- local sourcebatch = item.sourcebatch
- if item.rule then
- if not _sourcebatch_is_built(sourcebatch) then
- get_target_buildcmd_files(target, cmds, sourcebatch, opt)
- end
- end
- end
- end
-end
-
-- prepare targets
function prepare_targets()
local targets_root = target_buildutils.get_root_targets()