Skip to content
This repository has been archived by the owner on Aug 12, 2023. It is now read-only.

hexaditidom/Drawpile

 
 

Repository files navigation

Drawpile - a collaborative drawing program

DrawPile is a drawing program with a twist: you can share your drawing live with other people

Some feature highlights:

  • Shared network drawing
  • Built-in and standalone servers
  • Layers
  • Text annotations
  • Tablet support
  • Chat
  • Canvas rotation
  • Supports OpenRaster file format

Building with cmake

Dependencies:

  • Qt 5.1 or newer
  • zlib

It's a good idead to build in a separate directory to keep build files separate from the source tree.

Example:

$ mkdir build
$ cd build
$ cmake ..
$ make

The executables will be generated in the build/bin directory. You can run them from there, or install them with make install.

The configuration step supports some options:

  • SERVER=off: don't build the stand-alone server.
  • DEBUG=on: enable debugging features

Example: $ cmake .. -DDEBUG=on