Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 827 Bytes

File metadata and controls

48 lines (31 loc) · 827 Bytes

Box_Picture2

Shows how to use an image with Fl_Box widget.

Source

Box_Picture2.cpp

CMakeLists.txt

Resources/Logo.png

Output

output

Generate and build

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

Windows :

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

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

macOS :

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

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

Linux :

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