Skip to content

gammasoft71/Examples_FLTK

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FLTK examples

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

fltk

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.