- Windows 11/10 x64.
- Visual Studio Community 2022 + Desktop Development with C++ + Windows 10.0 SDK (latest).
- CMake.
- Ninja Build System.
- Skia.
- Winrar or 7zip.
-
Get Visual Studio Community 2022.
-
Once the installer launches, select Desktop Development with C++ workload.
-
In the "Individual Components" section, select Windows 10.0 SDK (latest).
-
Click the "Install while downloading" button to begin installing Visual Studio 2022.
-
Get the Aseprite source code
Aseprite-v1.x-Source.zip
-
Get CMake
cmake-3.xx.x-windows-x86_64.msi -
Choose the option
Add CMake To The PATH For environment variable
-
Download Ninja Build System.
-
Extract
ninja-win.zipand copyninja.exetoC:\Program Files\CMake\bin.
-
Download Skia
Skia-Windows-Release-x64.zip. -
In the
C:\directory, create a folder nameddeps. -
Inside the
depsdirectory, create another folder namedskia. -
Extract the contents of
Skia-Windows-Release-x64.zipinto theskiafolder.
-
In the
C:\directory, create a folder namedaseprite. -
Extract the contents of
Aseprite-v1.x-Source.zipinto theasepritefolder. -
Search
Command Prompt -
Execute the following commands:
call "C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\Tools\VsDevCmd.bat" -arch=x64
cd C:\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 ..- Now compile with Ninja Build System:
ninja aseprite-
If CMake is unable to detect the C/C++ compiler:
- Execute the following command instead:
cmake -DCMAKE_CXX_COMPILER="C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.41.34120\bin\Hostx64\x64\cl.exe" -DCMAKE_C_COMPILER="C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.41.34120\bin\Hostx64\x64\cl.exe" -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 ..
-
The executable will be located at
C:\aseprite\build\bin\aseprite.exe.
Tested With Aseprite v1.3.9.1
Please remember to support the creators of Aseprite. Only use this method to try the program or if you don't have access to funds or a credit card :)








