Collaborative painting app made with Qt!
You can check the features used to see the requirements met as part of the homework.
Check it out here.
First you must install Qt and CMake.
For the general case:
mkdir build && cd build
cmake -DCMAKE_PREFIX_PATH=path/to/Qt/5.x.x/lib/cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
And then you can run Skribble. Additionally on windows you also have to go where
Skribble.exe
is and run:
path/to/Qt/5.x.x/bin/windeployqt --qmldir src/qml/ Skribble.exe
To build for development purpose, check out the documentation.