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继续阅读 »
New features
Add --links, --linkdirs and --includedirs configure arguments
Add app2ipa plugin
Add dictionary syntax style for xmake.lua
Provide smart scanning and building mode without xmake.lua
Add set_xmakever api for xmake.lua
Add add_frameworks api for objc and swift
Support multi-languages extension and add golan继续阅读 »
Website
Sources
Changelog
New features
Add check includes dependence automatically
Add print colors
Add debugger support, .e.g xmake run -d program ...
Changes
Improve the interfaces of run shell
Upgrade luajit to v2.0.4
Improve to generate makefile plugin
Optimizate the multitasking compiling speed
Bugs fixed
Fi继续阅读 »
A simplest xmake.lua
```lua
-- define a target with named 'demo'
target("demo")
-- set the target kind, .e.g 'binary' is a console program
-- - static: a static library
-- - shared: a shared library
set_kind("binary")
-- add all c source files in the directory: src
add_files("src/*.c"继续阅读 »