Skip to content

Latest commit

 

History

History
193 lines (148 loc) · 20.8 KB

README.md

File metadata and controls

193 lines (148 loc) · 20.8 KB

FLTK Examples

Shows how to use FLTK controls only by programming code (c++17).

fltk

Download

git clone https://github.com/gammasoft71/Examples_FLTK Examples_FLTK

Build and run

To build this project, open "Terminal" and type following lines:

Windows :

mkdir build && cd build
cmake .. 
start Fltk_Examples.sln

Select any project and type Ctrl+F5 to build and run it.

macOS :

mkdir build && cd build
cmake .. -G "Xcode"
open ./Fltk_Examples.xcodeproj

Select any project and type Cmd+R to build and run it.

Linux :

mkdir build && cd build
cmake .. 
cmake --build . --config Debug
./Any_Project

Remarks

This project run with FLTK 1.3.5 and CMake.