Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 824 Bytes

README.md

File metadata and controls

48 lines (31 loc) · 824 Bytes

Mouse_Events

Demonstrates the use of mouse events.

Source

Mouse_Events.cpp

Fl_Trace_Window.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 Mouse_Events.sln

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

macOS :

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

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

Linux :

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