Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 818 Bytes

File metadata and controls

48 lines (31 loc) · 818 Bytes

Progress_Bar

Shows how to create a progress bar with own Fl_Progress_Bar widget.

Source

Progress_Bar.cpp

Fl_Progress_Bar.h

CMakeLists.txt

Output

output

Generate and build

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

Windows :

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

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

macOS :

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

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

Linux :

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