aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorruki <waruqi@gmail.com>2019-05-28 10:44:46 +0800
committerGitHub <noreply@github.com>2019-05-28 10:44:46 +0800
commitb01a82c79b2a568813e8757b0ca104d826ef441a (patch)
tree0d89d71d5a7fbe00770cd36e76506eb13d72d8e2 /README.md
parente076be060b086dd1254c2ecd5de59693733df6fe (diff)
parent6eccc0a85aad202301dd95fe96ae0285bcd7a7b5 (diff)
downloadxmake-docs-b01a82c79b2a568813e8757b0ca104d826ef441a.tar.gz
xmake-docs-b01a82c79b2a568813e8757b0ca104d826ef441a.zip
Merge pull request #4 from OpportunityLiu/patch-2
replace some url to avoid mixed content
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index 455d69c3..0de1d75a 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,8 @@ search: en
<p>
<div align="center">
- <a href="http://xmake.io">
- <img width="200" heigth="200" src="http://tboox.org/static/img/xmake/logo256c.png">
+ <a href="https://xmake.io">
+ <img width="200" heigth="200" src="https://tboox.org/static/img/xmake/logo256c.png">
</a>
<h1>xmake</h1>
@@ -40,7 +40,7 @@ search: en
<a href="https://jq.qq.com/?_wv=1027&k=5hpwWFv">
<img src="https://img.shields.io/badge/chat-on%20QQ-ff69b4.svg?style=flat-square" alt="QQ" />
</a>
- <a href="http://xmake.io/pages/donation.html#donate">
+ <a href="https://xmake.io/pages/donation.html#donate">
<img src="https://img.shields.io/badge/donate-us-orange.svg?style=flat-square" alt="Donate" />
</a>
</div>
@@ -973,7 +973,7 @@ $ xmake package -o ../test/packages
In this way, the test project can pass [add_packages](https://xmake.io/#/zh/manual?id=targetadd_packages) and [add_packagedirs](https://xmake.io/#/zh/manual?id= add_packagedirs) to configure and use the tbox.pkg package.
-For a detailed description of the built-in package, you can also refer to the following related article, which is described in detail: [Dependency package addition and automatic detection mechanism] (http://tboox.org/cn/2016/08/06/add-package -and-autocheck/)
+For a detailed description of the built-in package, you can also refer to the following related article, which is described in detail: [Dependency package addition and automatic detection mechanism](https://tboox.org/cn/2016/08/06/add-package-and-autocheck/)
#### System Search Mode
@@ -1068,7 +1068,7 @@ xmake will remotely pull the relevant source package, then automatically compile
<img src="/assets/img/index/package_manage.png" width="80%" />
-For more information and progress on package dependency management see the related issues: [Remote package management] (https://github.com/xmake-io/xmake/issues/69)
+For more information and progress on package dependency management see the related issues: [Remote package management](https://github.com/xmake-io/xmake/issues/69)
##### Currently Supported Features
@@ -1091,7 +1091,7 @@ Here we briefly introduce the processing mechanism of the entire dependency pack
##### Semantic Version Settings
-Xmake's dependency package management fully supports semantic version selection, for example: "~1.6.1". For a detailed description of the semantic version, see: [http://semver.org/] (http://semver.org/)
+Xmake's dependency package management fully supports semantic version selection, for example: "~1.6.1". For a detailed description of the semantic version, see: [https://semver.org/](https://semver.org/)
Some semantic versions are written:
@@ -1100,7 +1100,7 @@ add_requires("tbox 1.6.*", "pcre 1.3.x", "libpng ^1.18")
add_requires("libpng ~1.16", "zlib 1.1.2 || >=1.2.11 <1.3.0")
```
-The semantic version parser currently used by xmake is the [sv](https://github.com/uael/sv) library contributed by [uael](https://github.com/uael), which also has a description of the version. For detailed instructions, please refer to the following: [Version Description] (https://github.com/uael/sv#versions)
+The semantic version parser currently used by xmake is the [sv](https://github.com/uael/sv) library contributed by [uael](https://github.com/uael), which also has a description of the version. For detailed instructions, please refer to the following: [Version Description](https://github.com/uael/sv#versions)
Of course, if we have no special requirements for the current version of the dependency package, then we can write directly:
@@ -1266,7 +1266,7 @@ The above myrepo directory is your own private package repository, built into yo
add_repositories("my-repo myrepo")
```
-This can be referred to [benchbox] (https://github.com/tboox/benchbox) project, which has a built-in private repository.
+This can be referred to [benchbox](https://github.com/tboox/benchbox) project, which has a built-in private repository.
We can even build a package without directly building a package description into the project xmake.lua, which is useful for relying on one or two packages, for example:
@@ -1487,7 +1487,7 @@ If we only want to generate xmake.lua file, we can run:
$ xmake f -y
```
-If you want to known more information please see [Scan source codes and build project without makefile](http://tboox.org/2017/01/07/build-without-makefile/)
+If you want to known more information please see [Scan source codes and build project without makefile](https://tboox.org/2017/01/07/build-without-makefile/)
## Backers