Skip to content

gammasoft71/Examples_FLTK

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c6f630e · Apr 18, 2024
Jan 4, 2023
Mar 29, 2024
Jun 10, 2018
Jan 3, 2024
Apr 18, 2024
Apr 18, 2024

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.