Skip to content

Instantly share code, notes, and snippets.

@chris84948
Created October 18, 2018 21:20
Show Gist options
  • Save chris84948/46a529c5836fa4e06934ff5ad60e2547 to your computer and use it in GitHub Desktop.
Save chris84948/46a529c5836fa4e06934ff5ad60e2547 to your computer and use it in GitHub Desktop.
Batch script to create final exe for any Love2D project
del /F /Q build
copy /b "C:\program files\LOVE\love.exe"+%1 "%~n1.exe"
mkdir build
copy "C:\program files\LOVE\*.dll" build
move "%~n1.exe" "build/%~n1.exe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment