install_osx.md
August 18, 2017 ยท View on GitHub
Step 1
- install tools and sdks using brew
brew install cmake qt folly boost
- download other 3rd party sdk:
(WIP)
Step 2
git clone https://github.com/yushroom/FishEngine.git
Step 3
Use CMake to generate project file using any desired generator.
mkdir -p Engine/build && cd Engine/build
export PATH="/usr/local/opt/qt5/bin:$PATH"
cmake --warn-uninitialized --warn-ununsed-vars -G "Xcode" ..
Step 4
Finally, you can use any IDE according to you selected generator, but you can also just build straight from CMake. Build results can be found in Engine/Binary.
cmake --build . --target FishEditor --config Release