From 6ff3f7e9b472a07f05371c40f11f0c5551ac39b1 Mon Sep 17 00:00:00 2001 From: Rob <5183487+Rexeh@users.noreply.github.com> Date: Thu, 14 Mar 2024 16:34:26 +0000 Subject: [PATCH] Update Makefile to build installer, fix make version --- makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/makefile b/makefile index 78916c3..003d752 100644 --- a/makefile +++ b/makefile @@ -14,15 +14,15 @@ lint: @echo "Linting source code" @poetry run ruff check ./joystick_diagrams ./tests --fix -build-exe: - @echo "Making standard portable package" +build-exe: make-version + @echo "Making Frozen Executable" @python setup.py build - @echo "Making MSI Build" - @python setup.py build bdist_msi + @echo "Creating Installer" + @cmd /C "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" /Qp ./installer/config.iss make-version: @echo "Making version manifest" - @poetry run python joystick_diagrams/classes/version/version.py + @poetry run python joystick_diagrams/version.py ui: @echo "Generating UI python"