build armorpaint linux
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
How to build for Linux | |
Prerequisites | |
sudo apt install nodejs | |
&& sudo apt install make | |
&& sudo apt install clang | |
&& sudo apt install libxinerama-dev | |
&& sudo apt install libxrandr-dev | |
&& sudo apt install libasound2-dev | |
&& sudo apt install libxi-dev | |
&& sudo apt install mesa-common-dev | |
&& sudo apt install libgl-dev | |
&& sudo apt install libxcursor-dev | |
&& sudo apt install libvulkan-dev | |
&& sudo apt install libgtk-3-dev | |
&& sudo apt install libudev-dev | |
git clone --recursive https://github.com/armory3d/armorpaint | |
cd armorpaint | |
node armorcore/make -g opengl | |
cd armorcore | |
node Kinc/make -g opengl --compiler clang --compile | |
cd Deployment | |
strip ArmorPaint | |
then to run: | |
./ArmorPaint ../../build/krom | |
To add a script to run it from a shortcut... | |
#!/bin/bash | |
# | |
cd /media/andrew/SSD500/Programs/GameDev/Graphics/armorpaint_b8ba571c | |
./ArmorPaint build/krom |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment