mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 08:01:30 -07:00
Switch the Windows builds over to clang-cl.
This also switches them to being 64-bit, which I think is probably acceptable in this modern age, especially for such a non-essential piece of software. If anyone complains I can always reinstate a parallel 32-bit build. To support the switch to 64-bit, this commit also changes the default install directory in the MSI to 'Program Files' rather than 'Program Files (x86)'.
This commit is contained in:
28
Buildscr
28
Buildscr
@ -54,22 +54,30 @@ in puzzles do make -f Makefile.doc clean
|
|||||||
in puzzles do make -f Makefile.doc # build help files for installer
|
in puzzles do make -f Makefile.doc # build help files for installer
|
||||||
in puzzles do mason.pl --args '{"version":"$(Version)","descfile":"gamedesc.txt"}' winwix.mc > puzzles.wxs
|
in puzzles do mason.pl --args '{"version":"$(Version)","descfile":"gamedesc.txt"}' winwix.mc > puzzles.wxs
|
||||||
in puzzles do perl winiss.pl $(Version) gamedesc.txt > puzzles.iss
|
in puzzles do perl winiss.pl $(Version) gamedesc.txt > puzzles.iss
|
||||||
delegate windows
|
ifneq "$(VISUAL_STUDIO)" "yes" then
|
||||||
# FIXME: Cygwin alternative?
|
in puzzles with clangcl64 do Platform=x64 make -f Makefile.clangcl clean
|
||||||
in puzzles with visualstudio do/win nmake -f Makefile.vc clean
|
in puzzles with clangcl64 do Platform=x64 make -f Makefile.clangcl VER=-DVER=$(Version)
|
||||||
in puzzles with visualstudio do/win nmake -f Makefile.vc VER=-DVER=$(Version)
|
|
||||||
# Code-sign the binaries, if the local bob config provides a script
|
# Code-sign the binaries, if the local bob config provides a script
|
||||||
# to do so. We assume here that the script accepts an -i option to
|
# to do so. We assume here that the script accepts an -i option to
|
||||||
# provide a 'more info' URL, and an optional -n option to provide a
|
# provide a 'more info' URL, and an optional -n option to provide a
|
||||||
# program name, and that it can take multiple .exe filename
|
# program name, and that it can take multiple .exe filename
|
||||||
# arguments and sign them all in place.
|
# arguments and sign them all in place.
|
||||||
ifneq "$(winsigncode)" "" in puzzles do $(winsigncode) -i https://www.chiark.greenend.org.uk/~sgtatham/puzzles/ *.exe
|
ifneq "$(cross_winsigncode)" "" in puzzles do $(cross_winsigncode) -i https://www.chiark.greenend.org.uk/~sgtatham/puzzles/ *.exe
|
||||||
# Build installers.
|
# Build installers.
|
||||||
in puzzles with wix do/win candle puzzles.wxs && light -ext WixUIExtension -sval puzzles.wixobj
|
in puzzles with wixonlinux do candle -arch x64 puzzles.wxs && light -ext WixUIExtension -sval puzzles.wixobj
|
||||||
ifneq "$(winsigncode)" "" in puzzles do $(winsigncode) -i https://www.chiark.greenend.org.uk/~sgtatham/puzzles/ -n "Simon Tatham's Portable Puzzle Collection Installer" puzzles.msi Output/installer.exe
|
ifneq "$(cross_winsigncode)" "" in puzzles do $(cross_winsigncode) -i https://www.chiark.greenend.org.uk/~sgtatham/puzzles/ -n "Simon Tatham's Portable Puzzle Collection Installer" puzzles.msi
|
||||||
return puzzles/*.exe
|
else
|
||||||
return puzzles/puzzles.msi
|
delegate windows
|
||||||
enddelegate
|
in puzzles with visualstudio do/win nmake -f Makefile.vc clean
|
||||||
|
in puzzles with visualstudio do/win nmake -f Makefile.vc VER=-DVER=$(Version)
|
||||||
|
ifneq "$(winsigncode)" "" in puzzles do $(winsigncode) -i https://www.chiark.greenend.org.uk/~sgtatham/puzzles/ *.exe
|
||||||
|
# Build installers.
|
||||||
|
in puzzles with wix do/win candle puzzles.wxs && light -ext WixUIExtension -sval puzzles.wixobj
|
||||||
|
in puzzles with innosetup do/win iscc puzzles.iss
|
||||||
|
return puzzles/*.exe
|
||||||
|
return puzzles/puzzles.msi
|
||||||
|
enddelegate
|
||||||
|
endif
|
||||||
in puzzles do chmod +x *.exe
|
in puzzles do chmod +x *.exe
|
||||||
|
|
||||||
# Build the Pocket PC binaries and CAB.
|
# Build the Pocket PC binaries and CAB.
|
||||||
|
@ -61,7 +61,7 @@ has 'descfile' => (required => 1);
|
|||||||
% # (individual files or shortcuts or additions to PATH) that are
|
% # (individual files or shortcuts or additions to PATH) that are
|
||||||
% # installed.
|
% # installed.
|
||||||
<Directory Id="TARGETDIR" Name="SourceDir">
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
||||||
<Directory Id="ProgramFilesFolder" Name="PFiles">
|
<Directory Id="ProgramFiles64Folder" Name="PFiles">
|
||||||
<Directory Id="INSTALLDIR" Name="Simon Tatham's Portable Puzzle Collection">
|
<Directory Id="INSTALLDIR" Name="Simon Tatham's Portable Puzzle Collection">
|
||||||
|
|
||||||
% # The following components all install things in the main
|
% # The following components all install things in the main
|
||||||
|
Reference in New Issue
Block a user