In this video, I will guide you how to complie and build aseprite and get your own free copy.
This video is for only educational purposes, I don't intent to make any profit from it. Please support the devs if you liked their product.
Links:
Our Discord: https://bit.ly/codingadda
Blog: https://www.seekhcode.me/blog/compile...
Aseprite Building (ReadMe): https://github.com/aseprite/aseprite/...
GIT (For Windows): https://git-for-windows.github.io/
CMake (Download 3.30.1): https://cmake.org/files/v3.30/
Ninja: https://github.com/ninja-build/ninja/...
Skia (pre-built): https://github.com/aseprite/skia/rele...
Commands:
git clone --recursive https://github.com/aseprite/aseprite.git
Alternative (to git clone, if you are running into issues):
You can download source code as zip from releases page. https://github.com/aseprite/aseprite/...
call "C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\Tools\VsDevCmd.bat" -arch=x64
cd aseprite
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DLAF_BACKEND=skia -DSKIA_DIR=C:\deps\skia -DSKIA_LIBRARY_DIR=C:\deps\skia\out\Release-x64 -DSKIA_LIBRARY=C:\deps\skia\out\Release-x64\skia.lib -G Ninja ..
ninja aseprite