-
-
Save JulianThijssen/c9a6f5e249e33c866b00a73e9d9997bc to your computer and use it in GitHub Desktop.
Build and Run Krita
This file contains hidden or 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