find_package
This interface refers to the design of CMake for the find_* interfaces, which finds and adds package dependencies in the project target.
lua
target("test")
set_kind("binary")
add_files("*.c")
on_load(function (target)
import("lib.detect.find_package")
target:add(find_package("继续阅读 »
New features
Add native shell support for xmake.lua. .e.g add_ldflags("$(shell pkg-config --libs sqlite3)")
Enable pdb symbol files for windows
Add debugger support on windows (vsjitdebugger, ollydbg, windbg ... )
Add getenv interface for the global scope of xmake.lua
Add plugin for generating vstudio project file (vs继续阅读 »
最近从IntelliJ Idea 14的Community版本切换到Ultimate。
问题出现
最近从IntelliJ Idea 14的Community版本切换到Ultimate,key是从网络上下载的。安装之后,在创建maven project时(使用了archetype),速度慢的令人不敢相信,从Idea的控制台可以看到信息停留在:继续阅读 »
1. 直接上正文
正文就是,关于这点,SO已经有多答案了,下面我引用一下投票最多的答案。
Trunk:would be the main body of development, originating from the start of the project until the present.
Branch: will be a copy of code derived from a certain point in the trunk that is used for applying major changes to the code while preserving the integrity of the 继续阅读 »
xmake-sublime plugin is a xmake integration in Sublime Text.
It is deeply integrated with xmake and sublime text to provide a convenient and fast cross-platform c/c++ development and building.
You need install xmake first and a project with xmake.lua.
Features
Quickstart
Colorization
Completion Lists
StatusBar
Comm继续阅读 »