Skip to content

Latest commit

 

History

History
57 lines (33 loc) · 946 Bytes

README.md

File metadata and controls

57 lines (33 loc) · 946 Bytes

FishGUI

FIshGUI is a immediate mode GUI(IMGUI) library, based on NanoVG.

ScreenShot

with FishEngine

ScreenShot_FishEditor

How to Build

Linux / macOS

Tested on Ubuntu 17.10 and macOS 10.13.2

# ubuntu
# if you do not have opengl dev environment
sudo apt-get install libgl1-mesa-dev libglu1-mesa-dev 

# glfw requires xorg
sudo apt-get xorg-dev

# boost
sudo apt-get install libboost-all-dev
# macOS
brew install boost
  • Build:
git clone https://github.com/yushroom/FishGUI.git
cd FishGUI
mkdir build && cd build
cmake ..
make

build result can be found under FishGUI/bin

Windows

Tested on Windows10 with VS2017

Since filesystem is shipped with Visual Studio(2015/2017), boost is not required.