Please install xmake first, if you already have installed xmake, please skip this step
Please install chocolatey, then install xmake
choco install xmake
Please install xcode command line tools, then install brew
- install xcode command line tools
xcode-select --install
- install brew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- install xmake
brew install xmake
git clone https://github.com/charles-liang/hanabit-engine
:white_check_mark 01-xmake: create project structure
cd 01-xmake
xmake f -p windows -m debug -y
xmake
xmake run application
xmake f -p macosx -m debug -y
xmake
xmake run application
xmake f -p linux -m debug -y
xmake
xmake run application
xmake f -p windows -m release -y
xmake
xmake run application
xmake f -p macosx -m release -y
xmake
xmake run application
xmake f -p linux -m release -y
xmake
xmake run application