Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 790 Bytes

File metadata and controls

33 lines (24 loc) · 790 Bytes

Xmake Build Guide

To install Xmake visit: https://xmake.io/#/getting_started?id=installation

And for extra info on Xmake's commands visit: https://xmake.io/#/getting_started


I also recommend this extention for VSCode: https://marketplace.visualstudio.com/items?itemName=tboox.xmake-vscode

To configure the project

xmake f -p windows -a <arch> -m <build_mode>

# Examples
xmake f -p windows -a x64 -m release # As Release 
xmake f -p windows -a x64 -m debug # as Debug

Fresh build

xmake clean
xmake build

To generate a visual studio project to build with Xmake you can use:

xmake project -k vs -m "debug;release"
# Or
xmake project -k vsxmake2022 -m "debug;release"


Author: @Omega172