From c7c412f6458f5aceeb02e9bfc292dc7aac0852d3 Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 25 Jul 2024 00:54:13 +0800 Subject: move autogen tests --- .../projects/other/autogen_binary_module/xmake.lua | 32 ---------------------- 1 file changed, 32 deletions(-) delete mode 100644 tests/projects/other/autogen_binary_module/xmake.lua (limited to 'tests/projects/other/autogen_binary_module/xmake.lua') diff --git a/tests/projects/other/autogen_binary_module/xmake.lua b/tests/projects/other/autogen_binary_module/xmake.lua deleted file mode 100644 index b1617e543..000000000 --- a/tests/projects/other/autogen_binary_module/xmake.lua +++ /dev/null @@ -1,32 +0,0 @@ -add_rules("mode.debug", "mode.release") - -add_moduledirs("modules") - -rule("autogen") - set_extensions(".in") - before_build_file(function (target, sourcefile, opt) - import("utils.progress") - import("core.project.depend") - import("core.tool.compiler") - import("autogen.foo", {always_build = true}) - - local sourcefile_cx = path.join(target:autogendir(), "rules", "autogen", path.basename(sourcefile) .. ".cpp") - local objectfile = target:objectfile(sourcefile_cx) - table.insert(target:objectfiles(), objectfile) - - depend.on_changed(function () - progress.show(opt.progress, "${color.build.object}compiling.autogen %s", sourcefile) - os.mkdir(path.directory(sourcefile_cx)) - foo.generate(sourcefile, sourcefile_cx) - compiler.compile(sourcefile_cx, objectfile, {target = target}) - end, {dependfile = target:dependfile(objectfile), - files = sourcefile, - changed = target:is_rebuilt()}) - end) - -target("test") - set_kind("binary") - add_rules("autogen") - add_files("src/main.cpp") - add_files("src/*.in") - -- cgit v1.3.1