Skip to content

Instantly share code, notes, and snippets.

@JulianThijssen
Last active September 1, 2016 12:40
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