diff --git a/Makefile b/Makefile index 173265b..f5dd0ab 100644 --- a/Makefile +++ b/Makefile @@ -12,4 +12,5 @@ lint: stylua --indent-type Spaces ./ build: preprocess - zip -r Game.love ./* + # zip -r Game.love ./* + love-build "$$(pwd)/main.lua" diff --git a/build.lua b/build.lua new file mode 100644 index 0000000..e599bde --- /dev/null +++ b/build.lua @@ -0,0 +1,11 @@ +return { + name = 'Game', + developer = 'Sage Vaillancourt', + output = 'dist', + version = '0.1', + love = '11.5', + ignore = {'dist'}, + icon = 'icon.png', + + identifier = 'sagev.space.game', +} \ No newline at end of file diff --git a/icon.png b/icon.png new file mode 100644 index 0000000..115e08a Binary files /dev/null and b/icon.png differ