diff options
author | Louie S <louie@example.com> | 2024-05-09 13:00:38 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2024-05-09 13:00:38 -0400 |
commit | d26f44bcdd31c08f3d7b7651df39d3747127f7af (patch) | |
tree | 7bd283ca1fd86826644f3bdc8597b536e23b9638 /nsis/Makefile.am | |
parent | a42828ac5ecf3924891fdbc9b9a1d53bb7f1249c (diff) |
Experimental support for building NSIS installerv0.1
Diffstat (limited to 'nsis/Makefile.am')
-rw-r--r-- | nsis/Makefile.am | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/nsis/Makefile.am b/nsis/Makefile.am index c16bc2c..3f47a9f 100644 --- a/nsis/Makefile.am +++ b/nsis/Makefile.am @@ -1,8 +1,13 @@ EXTRA_DIST = installer.nsi.in -CLEANFILES = $(PACKAGE_NAME)-Setup.exe +CLEANFILES = $(PACKAGE_NAME)-Setup.exe deps/* + +SEARCHPATH=$$PATH +DEPENDENCIES = $(shell ./find_dlls.sh -q -s $(SEARCHPATH) '../src/$(PACKAGE_NAME).exe') .PHONY: installer +installer: $(PACKAGE_NAME)-Setup.exe $(PACKAGE_NAME)-Setup.exe: installer.nsi + mkdir -p deps + for file in $(DEPENDENCIES); do install "$$file" "deps/$$(basename "$$file")"; done makensis installer.nsi -installer: $(PACKAGE_NAME)-Setup.exe |