Cross-platform (Windows, Mac, Linux, iOS, Android) application for handwritten notes.
styluslabs.com | Help | FAQ
Checkout: git clone --recurse-submodules https://github.com/styluslabs/Write
To build executable syncscribble/Release/Write
:
- Linux:
cd syncscribble && make USE_SYSTEM_SDL=1
; On Debian/Ubuntu,apt install build-essential libsdl2-dev
. Copy fonts from scribbleres/fonts to syncscribble/Release before running Write. - Android (on Linux):
cd syncscribble/android && ./gww installRelease
; to install Android SDK and NDK, rungww --install-sdk
- iOS:
- build SDL:
cd SDL && git checkout write-mac && make -f ../scribbleres/SDL-Makefile.ios
- see nanovgXC readme for setup and then run
cd syncscribble && make
or use the Xcode project. - macOS:
cd syncscribble && make MACOS=1
- Windows:
- install Visual Studio (free Community Edition is fine) and GNU make for Windows, ensuring it is available in the path
- in
syncscribble/Makefile
, setDEPENDBASE
to the parent folder containing all dependencies thatmake
should track - build SDL:
cd SDL && git checkout write-win && make -f ../scribbleres/SDL-Makefile.msvc
- open a Visual Studio command prompt (from the Start Menu) and run
cd syncscribble && make