rule("qt.ts") add_deps("qt.env") set_extensions(".ts") on_config(function (target) import("lib.detect.find_file") import("core.base.json") -- get source file local lupdate_argv = {"-no-obsolete"} local sourcefile_ts local source_files = {} for _, sourcebatch in pairs(target:sourcebatches()) do if sourcebatch.rulename == "qt.ts" then sourcefile_ts = sourcebatch.sourcefiles else if sourcebatch.sourcefiles then for _, sourcefile in ipairs(sourcebatch.sourcefiles) do table.insert(source_files, sourcefile) end end end end if sourcefile_ts and #source_files > 0 then -- save source files source_files = table.unique(source_files) local json_data = { projectFile = "", sources = source_files } local json_path = path.join(target:autogendir(), "rules", "qt", "ts", "sources.json") json.savefile(json_path, json_data) table.join2(lupdate_argv, {"-project", path(json_path)}) -- get lupdate and lrelease local qt = assert(target:data("qt"), "qt not found!") local search_dirs = {} if qt.bindir_host then table.insert(search_dirs, qt.bindir_host) end if qt.bindir then table.insert(search_dirs, qt.bindir) end if qt.libexecdir_host then table.insert(search_dirs, qt.libexecdir_host) end if qt.libexecdir then table.insert(search_dirs, qt.libexecdir) end local lupdate = find_file(is_host("windows") and "lupdate.exe" or "lupdate", search_dirs) assert(os.isexec(lupdate), "lupdate not found!") local lrelease = find_file(is_host("windows") and "lrelease.exe" or "lrelease", search_dirs) assert(os.isexec(lrelease), "lrelease not found!") for _, tsfile in ipairs(sourcefile_ts) do local tsargv = {} table.join2(tsargv, lupdate_argv) table.join2(tsargv, {"-ts", path(tsfile)}) os.vrunv(lupdate, tsargv) end -- save lrelease target:data_set("qt.ts.lrelease", lrelease) end end) before_buildcmd_file(function (target, batchcmds, sourcefile_ts, opt) -- get lrelease local lrelease = target:data("qt.ts.lrelease") local outputdir = target:targetdir() local fileconfig = target:fileconfig(sourcefile_ts) if fileconfig and fileconfig.prefixdir then if path.is_absolute(fileconfig.prefixdir) then outputdir = fileconfig.prefixdir else outputdir = path.join(target:targetdir(), fileconfig.prefixdir) end end local outfile = path.join(outputdir, path.basename(sourcefile_ts) .. ".qm") batchcmds:mkdir(outputdir) batchcmds:show_progress(opt.progress, "${color.build.object}compiling.qt.ts %s", sourcefile_ts) batchcmds:vrunv(lrelease, {path(sourcefile_ts), "-qm", path(outfile)}) batchcmds:add_depfiles(sourcefile_ts) end)