--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file -- distributed with this work for additional information -- regarding copyright ownership. The ASF licenses this file -- to you 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 - 2018, TBOOX Open Source Group. -- -- @author ruki -- @file xmake.lua -- -- define rule: *.man rule("wdk.man") -- add rule: wdk environment add_deps("wdk.env") -- set extensions set_extensions(".man") -- before load before_load(function (target) -- imports import("core.project.config") -- get arch local arch = assert(config.arch(), "arch not found!") -- get wdk local wdk = target:data("wdk") -- get ctrpp local ctrpp = path.join(wdk.bindir, arch, "ctrpp.exe") if not os.isexec(ctrpp) then ctrpp = path.join(wdk.bindir, wdk.sdkver, arch, "ctrpp.exe") end assert(os.isexec(ctrpp), "ctrpp not found!") -- save ctrpp target:data_set("wdk.ctrpp", ctrpp) -- save output directory target:data_set("wdk.ctrpp.outputdir", path.join(config.buildir(), ".wdk", "man", config.get("mode") or "generic", config.get("arch") or os.arch(), target:name())) end) -- before build file before_build_file(function (target, sourcefile, opt) -- imports import("core.base.option") import("core.project.depend") -- get ctrpp local ctrpp = target:data("wdk.ctrpp") -- get output directory local outputdir = target:data("wdk.ctrpp.outputdir") -- init args local args = {sourcefile} local flags = target:values("wdk.man.flags", sourcefile) if flags then table.join2(args, flags) end -- add includedirs target:add("includedirs", outputdir) -- add header file local header = target:values("wdk.man.header", sourcefile) local headerfile = header and path.join(outputdir, header) or nil if headerfile then table.insert(args, "-o") table.insert(args, headerfile) target:data_add("wdk.cleanfiles", headerfile) else raise("please call `set_values(\"wdk.man.header\", \"header.h\")` to set the provider header file name!") end -- add prefix local prefix = target:values("wdk.man.prefix", sourcefile) if prefix then table.insert(args, "-prefix") table.insert(args, prefix) end -- add counter header file local counter_header = target:values("wdk.man.counter_header", sourcefile) local counter_headerfile = counter_header and path.join(outputdir, counter_header) or nil if counter_headerfile then table.insert(args, "-ch") table.insert(args, counter_headerfile) target:data_add("wdk.cleanfiles", counter_headerfile) end -- add resource file local resource = target:values("wdk.man.resource", sourcefile) local resourcefile = resource and path.join(outputdir, resource) or nil if resourcefile then table.insert(args, "-rc") table.insert(args, resourcefile) target:data_add("wdk.cleanfiles", resourcefile) end -- need build this object? local dependfile = target:dependfile(headerfile) local dependinfo = option.get("rebuild") and {} or (depend.load(dependfile) or {}) if not depend.is_changed(dependinfo, {lastmtime = os.mtime(headerfile), values = args}) then return end -- trace progress info if option.get("verbose") then cprint("${green}[%02d%%]:${dim} compiling.wdk.man %s", opt.progress, sourcefile) else cprint("${green}[%02d%%]:${clear} compiling.wdk.man %s", opt.progress, sourcefile) end -- generate header and resource file if not os.isdir(outputdir) then os.mkdir(outputdir) end os.vrunv(ctrpp, args) -- update files and values to the dependent file dependinfo.files = {sourcefile} dependinfo.values = args depend.save(dependinfo, dependfile) end)