-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement --enable-windows-installer based on --enable-app-bundle
- Loading branch information
Showing
5 changed files
with
86 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## This file will be processed by automake (which is called by autogen.sh) to | ||
## generate Makefile.in, which in turn will be processed by configure to | ||
## generate Makefile. | ||
|
||
## comments starting with a single # are copied to Makefile.in (and afterwards | ||
## to Makefile), comments with ## are dropped. | ||
|
||
## This file is only taken into account if --enable-windows-installer was chosen! | ||
if ENABLE_WINDOWS_INSTALLER | ||
|
||
# create Windows installer | ||
nsis: | ||
@echo "TODO: run NSIS!" | ||
|
||
.PHONY: nsis | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters