Merge pull request #616 from sabelka/nsis-installer

add nsis installer for windows images
This commit is contained in:
Matt McCormick 2021-10-12 14:00:08 -04:00 committed by GitHub
commit 17a2266499
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,6 +54,7 @@ RUN \
libc6-dev-i386 \
lzip \
make \
nsis \
openssl \
p7zip-full \
patch \
@ -107,6 +108,10 @@ RUN \
#
echo 'set(CMAKE_CROSSCOMPILING_EMULATOR "/usr/bin/wine")' >> ${CMAKE_TOOLCHAIN_FILE} && \
#
# Add a sysmbolic link for makensis
#
ln -s /usr/bin/makensis /usr/bin/${MXE_TARGET_ARCH}-w64-mingw32.${MXE_TARGET_LINK}${MXE_TARGET_THREAD}-makensis && \
#
# Replace cmake and cpack binaries
#
cd /usr/bin && \