Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 925 Bytes

File metadata and controls

54 lines (34 loc) · 925 Bytes

Message_Box

Shows how to use message box with own fl_message_box method.

Source

Dialog_Result.h

fl_message_box.h

Message_Box_Buttons.h

Message_Box_Icon.h

Message_Box.cpp

CMakeLists.txt

Output

output

Generate and build

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

Windows :

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

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

macOS :

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

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

Linux :

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