Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sarlinpe committed Dec 18, 2023
1 parent a1b412f commit 78678ef
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions package/install-colmap-windows.ps1
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
CURRDIR = $PWD
$CURRDIR = $PWD

echo $env:VCPKG_INSTALLATION_ROOT
& "${VCPKG_INSTALLATION_ROOT}/vcpkg.exe" integrate install
$env:VCPKG_INSTALLATION_ROOT
Dir -Recurse ${VCPKG_INSTALLATION_ROOT} | Get-Childitem
& "${VCPKG_INSTALLATION_ROOT}\vcpkg.exe" integrate install

curl -L -o "ninja.zip" "https://github.com/ninja-build/ninja/releases/download/v1.10.2/ninja-win.zip"
Expand-Archive -LiteralPath "${CURRDIR}/ninja.zip" -DestinationPath ${CURRDIR}
NINJA_PATH = "${CURRDIR}/ninja.exe"
$NINJA_PATH = "${CURRDIR}/ninja.exe"


cd ${CURRDIR}
git clone https://github.com/colmap/colmap.git
Expand Down

0 comments on commit 78678ef

Please sign in to comment.