Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 776 Bytes

File metadata and controls

48 lines (31 loc) · 776 Bytes

Check_Box

Shows how to create a check box with own Fl_Check_Box widget.

Source

Check_Box.cpp

Fl_Check_Box.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 Check_Box.sln

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

macOS :

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

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

Linux :

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