we grab a prebuilt bootstrap at build time

fix iss makefile
pull/825/head
Rick V 5 years ago
parent 9ba4ecc42d
commit b002d09f80
No known key found for this signature in database
GPG Key ID: C0EDC8723FDC3465

3
.gitignore vendored

@ -60,3 +60,6 @@ GTAGS
GRTAGS
GPATH
version.txt
lokinet-bootstrap.exe
regdbhelper.dll

@ -1,6 +1,14 @@
# Makefile for windows install pkg and helper library
all: regdbhelper.dll lokinet-bootstrap.exe
default: all
regdbhelper.dll:
i686-w64-mingw32-gcc regdb_helper.c -o $@ -shared -Os -s
lokinet-bootstrap.exe:
wget https://snowlight.net/loki/win32-dist/lokinet-bootstrap.exe
clean:
rm *.dll *.exe

@ -93,7 +93,7 @@ Source: "{#DevPath}build\lokinet-rcutil.exe"; DestDir: "{app}"; Flags: ignorever
Source: "{#DevPath}LICENSE"; DestDir: "{app}"; Flags: ignoreversion
; delet this after finishing setup, we only need it to extract the drivers
; and download an initial RC. The UI has its own bootstrap built-in!
Source: "{#DevPath}lokinet-bootstrap.exe"; DestDir: "{tmp}"; Flags: deleteafterinstall
Source: "lokinet-bootstrap.exe"; DestDir: "{tmp}"; Flags: deleteafterinstall
Source: "{tmp}\7z.exe"; DestDir: "{tmp}"; Flags: deleteafterinstall external
; if nonexistent, then inet6 was already installed
Source: "{tmp}\inet6.7z"; DestDir: "{app}"; Flags: ignoreversion external deleteafterinstall skipifsourcedoesntexist; MinVersion: 0,5.0; OnlyBelowVersion: 0,5.1

Loading…
Cancel
Save