Skip to content

Commit

Permalink
MAINT(build): Modify helper folder and scripts to use custom zeroc-ic…
Browse files Browse the repository at this point in the history
…e port
  • Loading branch information
Nik Reist committed Apr 15, 2022
1 parent 0c2e398 commit 4a533fa
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Source: zeroc-ice
Source: zeroc-ice-mumble
Version: 3.7.3
Homepage: https://github.com/zeroc-ice/ice
Description: Comprehensive RPC framework with support for C++, CSharp, Java, JavaScript, Python and more.
Expand Down
8 changes: 4 additions & 4 deletions scripts/vcpkg/get_mumble_dependencies.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $mumble_deps = "qt5-base",
"libmariadb",
"mdnsresponder",
"zlib",
"zeroc-ice"
"zeroc-ice-mumble"

$ErrorActionPreference = 'Stop'

Expand Down Expand Up @@ -59,9 +59,9 @@ try {
}

if (Test-Path $vcpkgdir) {
if (-not (Test-Path $vcpkgdir/ports/zeroc-ice)) {
Write-Host "Adding ports for ZeroC Ice..."
Copy-Item -Path $PSScriptRoot/../../helpers/vcpkg/ports/zeroc-ice -Destination $vcpkgdir/ports -Recurse
if (-not (Test-Path $vcpkgdir/ports/zeroc-ice-mumble)) {
Write-Host "Adding port for ZeroC Ice..."
Copy-Item -Path $PSScriptRoot/../../helpers/vcpkg/ports/zeroc-ice-mumble -Destination $vcpkgdir/ports -Recurse
}

cd $vcpkgdir
Expand Down
4 changes: 2 additions & 2 deletions scripts/vcpkg/get_mumble_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ mumble_deps='qt5-base,
libsndfile,
libmariadb,
zlib,
zeroc-ice'
zeroc-ice-mumble'

# Determine vcpkg triplet from OS https://github.com/Microsoft/vcpkg/blob/master/docs/users/triplets.md
# Available triplets can be printed with `vcpkg help triplet`
Expand All @@ -74,7 +74,7 @@ fi
if [ -d "$VCPKGDIR" ]
then
# copy ZeroC Ice port files
cp -R helpers/vcpkg/ports/zeroc-ice $VCPKGDIR/ports
cp -R helpers/vcpkg/ports/zeroc-ice-mumble $VCPKGDIR/ports
cd $VCPKGDIR

if [ ! -x $VCPKGDIR/vcpkg ]
Expand Down

0 comments on commit 4a533fa

Please sign in to comment.