Skip to content

Latest commit

 

History

History
63 lines (42 loc) · 1.34 KB

File metadata and controls

63 lines (42 loc) · 1.34 KB

Fase

Build Status

Fase is a editor of pipeline for C++ program.

You can edit pipeline with GUI, and run the editing program without a compiling, of course, using only C++.

After GUI editing, you can obtain native C++ source code for the deploy.

Testing Enviroments

  • MacOS 10.15 & clang++
  • Ubuntu 16.04 LTS + clang++ 8 (should be greater than 5)
  • Windows10 MSVC2019

Build Examples

CMake Options

  • FASE_BUILD_EXAMPLES build examples.

  • FASE_BUILD_GLFW build glfw, if you use MacOS and GLFW3 is installed, turn OFF.

Mac

If you installed GLFW3, you need glfw3 separately:

> mkdir build
> cd build
> cmake -DFASE_BUILD_GLFW=OFF ..
> make

Else:

> mkdir build
> cd build
> cmake ..
> make

Linux

> mkdir build
> cd build
> cmake ..
> make

Windows

Screenshot