Skip to content

Instantly share code, notes, and snippets.

@JulianThijssen
Last active September 1, 2016 12:40
Show Gist options
  • Save JulianThijssen/c9a6f5e249e33c866b00a73e9d9997bc to your computer and use it in GitHub Desktop.
Save JulianThijssen/c9a6f5e249e33c866b00a73e9d9997bc to your computer and use it in GitHub Desktop.
Build and Run Krita
# Enter our Krita building folder
cd $INSTALL_ROOT/build
# Generate the appropriate Krita makefiles
cmake ../krita -DCMAKE_INSTALL_PREFIX=$INSTALL_ROOT/i -DDEFINE_NO_DEPRECATED=1 -DPACKAGERS_BUILD=ON -DBUILD_TESTING=OFF -DKDE4_BUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=RelWithDebInfo
# Start building with 8 threads at the same time
make -j8
# Install Krita into our i directory
make install
# Launch Krita!!
../i/bin/krita
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment