This release fix some bugs and improve some details. And provide xmake-vscode plugins to integrate vscode editor and xmake.
If you want to known more usage, please see online documents。
Source code: Github, Gitee.
New features
Add add_imports to bulk import modules for the target, option and package script
Add xmak继续阅读 »
xmake can run and debug the given target program now.
We only need configure the debug mode to compile this target and run it.
e.g.
```lua
-- enable debug symbols
if is_mode("debug")
set_symbols("debug")
end
-- define target
target("demo")
set_kind("kind")
add_files("src/*.c")
```
And we compile and r继续阅读 »
Before the wiki document structure is not very good, and not convenient to retrieve.
So I recently rewritten the document of xmake using docute again.
The Documents:
English Document
Chinese Document继续阅读 »
Packages all targets for the current platform:
bash
$xmake p
$xmake package
Packages the target test to the output directory: /tmp
bash
$xmake p -o /tmp test
$xmake p --output=/tmp test
Packages targets for the iphoneos platform.
bash
$xmake f -p iphoneos
$xmake p
We can uses the macro继续阅读 »
Links
Homepage
Documents
New features
Add aur package script and support to install xmake from yaourt
Add set_basename api for target
Changes
Support vs2017
Support compile rust for android
Improve vs201x project plugin and support multi-modes compilation.
Bugs fixed
Fix cannot find android sdk header files
Fix che继续阅读 »