Skip to content

Commit

Permalink
fix windows crossgcc builds
Browse files Browse the repository at this point in the history
  • Loading branch information
gdraheim committed Aug 7, 2024
1 parent 7a65df0 commit d399ea9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testbuilds/windows-shared-x64.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN mkdir src/build
RUN cd src/build && conan install .. --build=missing --profile:host=windows --profile:build=default
RUN cd src/build && cmake .. -DCMAKE_TOOLCHAIN_FILE=./conan_toolchain.cmake \
-DCMAKE_SYSTEM_NAME=Windows -DCMAKE_VERBOSE_MAKEFILE=ON -DZZIPTEST=OFF
RUN cd src/build && cmake --build . VERBOSE=1
RUN cd src/build && cmake --build . --verbose
# RUN $no_check || (cd src/build && make check)
# RUN $no_install || (cd src/build && make install)
RUN cd src/build && cmake --build . --target install
Expand Down
2 changes: 1 addition & 1 deletion testbuilds/windows-static-x64.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN mkdir src/build
RUN cd src/build && conan install .. --build=missing --profile:host=windows --profile:build=default
RUN cd src/build && cmake .. -DCMAKE_TOOLCHAIN_FILE=./conan_toolchain.cmake -DBUILD_SHARED_LIBS=OFF \
-DCMAKE_SYSTEM_NAME=Windows -DCMAKE_VERBOSE_MAKEFILE=ON -DZZIPTEST=OFF
RUN cd src/build && cmake --build . VERBOSE=1
RUN cd src/build && cmake --build . --verbose
# RUN $no_check || (cd src/build && make check)
# RUN $no_install || (cd src/build && make install)
RUN cd src/build && cmake --build . --target install
Expand Down

0 comments on commit d399ea9

Please sign in to comment.