summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2016-03-03 14:24:34 +0800
committerruki <[email protected]>2016-03-03 14:24:34 +0800
commited661e8781d307227b928d8b7f801e4240a017f2 (patch)
treefc6c6e8bb86c0835b86cf619439460b218a199ff
parent2899c85965c428974b5bc07ddec461bf2055c747 (diff)
modify README
-rwxr-xr-xREADME.md10
-rw-r--r--xmake/core/base/uninstall.lua104
2 files changed, 5 insertions, 109 deletions
diff --git a/README.md b/README.md
index 32343a56a..a389a3541 100755
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ It is similar to cmake, automake, premake, but more convenient and easy to use.
9. describe the project file using lua script, more flexible and simple
-- xmake.lua
- def_target("console")
+ target("console")
-- set kind
set_kind("binary")
@@ -46,7 +46,7 @@ create a c++ console project:
project makefile: xmake.lua
- def_target("console")
+ target("console")
set_kind("binary")
add_files("src/*.c")
@@ -129,7 +129,7 @@ The simple xmake.lua file:
end
-- add target
- def_target("test")
+ target("test")
-- set kind
set_kind("static")
@@ -206,7 +206,7 @@ XMake是一个跨平台自动构建工具,支持在各种主流平台上构建
工程描述文件:xmake.lua
- def_target("console")
+ target("console")
set_kind("binary")
add_files("src/*.c")
@@ -305,7 +305,7 @@ XMake是一个跨平台自动构建工具,支持在各种主流平台上构建
end
-- add target
- def_target("test")
+ target("test")
-- set kind
set_kind("static")
diff --git a/xmake/core/base/uninstall.lua b/xmake/core/base/uninstall.lua
deleted file mode 100644
index 09b20ff25..000000000
--- a/xmake/core/base/uninstall.lua
+++ /dev/null
@@ -1,104 +0,0 @@
---!The Automatic Cross-platform Build Tool
---
--- XMake is free software; you can redistribute it and/or modify
--- it under the terms of the GNU Lesser General Public License as published by
--- the Free Software Foundation; either version 2.1 of the License, or
--- (at your option) any later version.
---
--- XMake is distributed in the hope that it will be useful,
--- but WITHOUT ANY WARRANTY; without even the implied warranty of
--- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
--- GNU Lesser General Public License for more details.
---
--- You should have received a copy of the GNU Lesser General Public License
--- along with XMake;
--- If not, see <a href="http://www.gnu.org/licenses/"> http://www.gnu.org/licenses/</a>
---
--- Copyright (C) 2015 - 2016, ruki All rights reserved.
---
--- @author ruki
--- @file uninstall.lua
---
-
--- define module: uninstall
-local uninstall = uninstall or {}
-
--- load modules
-local os = require("base/os")
-local io = require("base/io")
-local rule = require("base/rule")
-local path = require("base/path")
-local utils = require("base/utils")
-local config = require("base/config")
-local platform = require("base/platform")
-
--- uninstall target from the platform script
-function uninstall._done_from_platform(target)
-
- -- check
- assert(target)
-
- -- the platform uninstall script file
- local uninstallscript = nil
- local scriptfile = platform.directory() .. "/uninstall.lua"
- if os.isfile(scriptfile) then
-
- -- load the uninstall script
- local script, errors = loadfile(scriptfile)
- if script then
- uninstallscript = script()
- if type(uninstallscript) == "table" and uninstallscript.main then
- uninstallscript = uninstallscript.main
- end
- else
- utils.error(errors)
- end
- end
-
- -- uninstall it
- if type(uninstallscript) == "function" then
- return uninstallscript(target)
- end
-
- -- continue
- return 0
-end
-
--- uninstall target from the given target configure
-function uninstall._done(target)
-
- -- check
- assert(target)
-
- -- uninstall it from the platform script
- local ok = uninstall._done_from_platform(target)
- if ok ~= 0 then return utils.ifelse(ok == 1, true, false) end
-
- -- ok
- return true
-end
-
--- done uninstall from the configure
-function uninstall.done(configs)
-
- -- check
- assert(configs)
-
- -- uninstall targets
- for _, target in pairs(configs) do
-
- -- uninstall it
- if not uninstall._done(target) then
- -- errors
- utils.error("uninstall %s failed!", target.name)
- return false
- end
-
- end
-
- -- ok
- return true
-end
-
--- return module: uninstall
-return uninstall