/buildkrita.sh Secret
Last active
September 1, 2016 12:40
Build and Run Krita
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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