diff options
| author | ruki <[email protected]> | 2019-09-21 13:47:22 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2019-09-21 13:47:22 +0800 |
| commit | 8087d1444858635b8f801e8cf13eedc96cf53f83 (patch) | |
| tree | 6821ef7140d93366181ef5fc7ba839275f415255 | |
| parent | e0c87675917eaca2332ff7ab2a3d5e8f841c4192 (diff) | |
add xmakefile generator
| -rwxr-xr-x | xmake/plugins/project/main.lua | 2 | ||||
| -rw-r--r-- | xmake/plugins/project/make/xmakefile.lua | 120 | ||||
| -rw-r--r-- | xmake/plugins/project/xmake.lua | 1 |
3 files changed, 123 insertions, 0 deletions
diff --git a/xmake/plugins/project/main.lua b/xmake/plugins/project/main.lua index 0f55057b3..0af286629 100755 --- a/xmake/plugins/project/main.lua +++ b/xmake/plugins/project/main.lua @@ -24,6 +24,7 @@ import("core.base.task") import("core.project.config") import("core.platform.environment") import("make.makefile") +import("make.xmakefile") import("cmake.cmakelists") import("vstudio.vs") import("vsxmake.vsxmake") @@ -37,6 +38,7 @@ function _make(kind) local maps = { makefile = makefile.make + , xmakefile = xmakefile.make , cmakelists = cmakelists.make , vs2002 = vs.make(2002) , vs2003 = vs.make(2003) diff --git a/xmake/plugins/project/make/xmakefile.lua b/xmake/plugins/project/make/xmakefile.lua new file mode 100644 index 000000000..596c22ac6 --- /dev/null +++ b/xmake/plugins/project/make/xmakefile.lua @@ -0,0 +1,120 @@ +--!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 - 2019, TBOOX Open Source Group. +-- +-- @author ruki +-- @file xmakefile.lua +-- + +-- imports +import("core.project.project") + +-- make build +function _make_build(makefile) + makefile:print(".PHONY: build") + makefile:print("") + makefile:print("build: ") + makefile:print("\t@xmake --build %${TARGET}") + makefile:print("") +end + +-- make rebuild +function _make_rebuild(makefile) + makefile:print("rebuild: ") + makefile:print("\t@xmake --rebuild %${TARGET}") + makefile:print("") +end + +-- make install +function _make_install(makefile) + makefile:print("install: ") + makefile:print("\t@xmake install %${TARGET}") + makefile:print("") +end + +-- make uninstall +function _make_uninstall(makefile) + makefile:print("uninstall: ") + makefile:print("\t@xmake uninstall %${TARGET}") + makefile:print("") +end + +-- make package +function _make_package(makefile) + makefile:print("package: ") + makefile:print("\t@xmake package %${TARGET}") + makefile:print("") +end + +-- make clean +function _make_clean(makefile) + makefile:print("clean: ") + makefile:print("\t@xmake clean %${TARGET}") + makefile:print("") +end + +-- make run +function _make_run(makefile) + makefile:print("run: ") + makefile:print("\t@xmake run %${TARGET}") + makefile:print("") +end + +-- make debug +function _make_debug(makefile) + makefile:print("debug: ") + makefile:print("\t@xmake run -d %${TARGET}") + makefile:print("") +end + +-- make +function make(outputdir) + + -- enter project directory + local oldir = os.cd(os.projectdir()) + + -- open the makefile + local makefile = io.open(path.join(outputdir, "makefile"), "w") + + -- make build + _make_build(makefile) + + -- make rebuild + _make_rebuild(makefile) + + -- make install + _make_install(makefile) + + -- make uninstall + _make_uninstall(makefile) + + -- make package + _make_package(makefile) + + -- make clean + _make_clean(makefile) + + -- make run + _make_run(makefile) + + -- make debug + _make_debug(makefile) + + -- close the makefile + makefile:close() + + -- leave project directory + os.cd(oldir) +end diff --git a/xmake/plugins/project/xmake.lua b/xmake/plugins/project/xmake.lua index 03edeb0ad..e795c0338 100644 --- a/xmake/plugins/project/xmake.lua +++ b/xmake/plugins/project/xmake.lua @@ -40,6 +40,7 @@ task("project") { {'k', "kind", "kv", "makefile", "Set the project kind." , " - makefile" + , " - xmakefile (makefile with xmake)" , " - cmakelists" , " - compile_flags" , " - compile_commands (clang compilation database with json format)" |
