Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitjano committed Apr 26, 2024
1 parent 2d839d4 commit 1f08bad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile.windows
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ RUN Start-Process -FilePath "$env:TEMP\vs_buildtools.exe" \
# install vcpkg
# RUN $env:VCPKG_INSTALL_DIR="c:\\vcpkg"
# RUN $env:VCPKG_DEFAULT_TRIPLET="x64-windows"
RUN git clone https://github.com/microsoft/vcpkg c:\vcpkg && \
cd c:\vcpkg && \
bootstrap-vcpkg.bat -disableMetrics && \
RUN git clone https://github.com/microsoft/vcpkg c:\vcpkg; \
cd c:\vcpkg; \
bootstrap-vcpkg.bat -disableMetrics; \
.\vcpkg install cgal boost-program-options boost-timer boost-test --triplet x64-windows

# build sfcgal
RUN cd $env:starter_path && \
RUN cd $env:starter_path; \
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DSFCGAL_BUILD_TESTS=OFF -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALL_DIR\scripts\buildsystems\vcpkg.cmake"

# Restore default shell for Windows containers.
Expand Down

0 comments on commit 1f08bad

Please sign in to comment.