Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 798 Bytes

README.md

File metadata and controls

48 lines (31 loc) · 798 Bytes

Box_Picture

Shows how to use an image with Fl_Box widget.

Source

Box_Picture.cpp

CMakeLists.txt

logo.xpm

Output

output

Generate and build

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

Windows :

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

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

macOS :

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

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

Linux :

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