Skip to content

Instantly share code, notes, and snippets.

@Mitra-88
Last active June 2, 2026 03:08
Show Gist options
  • Select an option

  • Save Mitra-88/3fd0188afeb8d49f219efb008b612197 to your computer and use it in GitHub Desktop.

Select an option

Save Mitra-88/3fd0188afeb8d49f219efb008b612197 to your computer and use it in GitHub Desktop.
Compile Aseprite from source code for Windows 11/10 x64

⚠️ This compilation guide is no longer maintained.

Prerequisites

Download and Set Up Visual Studio Community 2022

Get The Source Code

Download and Set Up CMake

  • Get CMake cmake-4.xx.x-windows-x86_64.msi

  • Choose the option Add CMake To The PATH For environment variable

Download and Set Up Ninja

  • Download Ninja Build System.

  • Extract ninja-win.zip and copy ninja.exe to C:\Program Files\CMake\bin.

Download Skia

  • Download Skia Skia-Windows-Release-x64.zip.

  • In the C:\ directory, create a folder named deps.

  • Inside the deps directory, create another folder named skia.

  • Extract the contents of Skia-Windows-Release-x64.zip into the skia folder.

Compiling

  • In the C:\ directory, create a folder named aseprite.

  • Extract the contents of Aseprite-v1.x-Source.zip into the aseprite folder.

  • 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:
ninja aseprite
  • The executable will be located at C:\aseprite\build\bin\aseprite.exe.

Tested With Aseprite v1.3.14

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 :)

@sambruggeman

sambruggeman commented Dec 26, 2025

Copy link
Copy Markdown

when using vs26 the path should now be: C:\Program Files\Microsoft Visual Studio\18\Community\Common7\Tools\VsDevCmd.bat
but everything else worked, thanks!

@dodopotatoes

Copy link
Copy Markdown

can anyone help with this? im just confused

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment