mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-29 22:55:06 +03:00
added webview dll
This commit is contained in:
parent
77f02b16a4
commit
600b8db692
1 changed files with 16 additions and 1 deletions
|
@ -83,8 +83,12 @@ then
|
||||||
fi
|
fi
|
||||||
if [ $PKGARCH = "x64" ]; then
|
if [ $PKGARCH = "x64" ]; then
|
||||||
PKGWINTUNDLL=wintun/bin/amd64/wintun.dll
|
PKGWINTUNDLL=wintun/bin/amd64/wintun.dll
|
||||||
|
PKGWEBVIEWFILE=contrib/ui/mesh-ui/dll/x64/webview.dll
|
||||||
|
PKGWEBVIEWFILELOADER=contrib/ui/mesh-ui/dll/x64/WebView2Loader.dll
|
||||||
elif [ $PKGARCH = "x86" ]; then
|
elif [ $PKGARCH = "x86" ]; then
|
||||||
PKGWINTUNDLL=wintun/bin/x86/wintun.dll
|
PKGWINTUNDLL=wintun/bin/x86/wintun.dll
|
||||||
|
PKGWEBVIEWFILE=contrib/ui/mesh-ui/dll/x86/webview.dll
|
||||||
|
PKGWEBVIEWFILELOADER=contrib/ui/mesh-ui/dll/x86/WebView2Loader.dll
|
||||||
elif [ $PKGARCH = "arm" ]; then
|
elif [ $PKGARCH = "arm" ]; then
|
||||||
PKGWINTUNDLL=wintun/bin/arm/wintun.dll
|
PKGWINTUNDLL=wintun/bin/arm/wintun.dll
|
||||||
#elif [ $PKGARCH = "arm64" ]; then
|
#elif [ $PKGARCH = "arm64" ]; then
|
||||||
|
@ -137,7 +141,6 @@ cat > wix.xml << EOF
|
||||||
<Directory Id="TARGETDIR" Name="SourceDir">
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
||||||
<Directory Id="${PKGINSTFOLDER}" Name="PFiles">
|
<Directory Id="${PKGINSTFOLDER}" Name="PFiles">
|
||||||
<Directory Id="MeshInstallFolder" Name="RiV-mesh">
|
<Directory Id="MeshInstallFolder" Name="RiV-mesh">
|
||||||
|
|
||||||
<Component Id="MainExecutable" Guid="c2119231-2aa3-4962-867a-9759c87beb24">
|
<Component Id="MainExecutable" Guid="c2119231-2aa3-4962-867a-9759c87beb24">
|
||||||
<File
|
<File
|
||||||
Id="Mesh"
|
Id="Mesh"
|
||||||
|
@ -197,6 +200,18 @@ cat > wix.xml << EOF
|
||||||
DiskId="1"
|
DiskId="1"
|
||||||
Source="${PKGINDEXFILE}" />
|
Source="${PKGINDEXFILE}" />
|
||||||
|
|
||||||
|
<File
|
||||||
|
Id="WebViewFile"
|
||||||
|
Name="webview.dll"
|
||||||
|
DiskId="1"
|
||||||
|
Source="${PKGWEBVIEWFILE}" />
|
||||||
|
|
||||||
|
<File
|
||||||
|
Id="WebViewFileLoader"
|
||||||
|
Name="WebView2Loader.dll"
|
||||||
|
DiskId="1"
|
||||||
|
Source="${PKGWEBVIEWFILELOADER}" />
|
||||||
|
|
||||||
<ServiceInstall
|
<ServiceInstall
|
||||||
Id="UIServiceInstaller"
|
Id="UIServiceInstaller"
|
||||||
Account="LocalSystem"
|
Account="LocalSystem"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue