Fix C++ linking on AppVeyor

For some reason Rustup now installs the i686 toolchain by default, so
build the C++ tests as a 32-bit application.
This commit is contained in:
Oliver Hamlet
2019-12-23 13:22:01 +00:00
parent 90ef017807
commit 7ff5e0c5d1
+1 -1
View File
@@ -50,6 +50,6 @@ test_script:
- cargo build --manifest-path ffi/Cargo.toml --features ffi-headers
- ps: mkdir ffi/build
- cd ffi/build
- cmake .. -G "Visual Studio 15 2017 Win64"
- cmake .. -G "Visual Studio 15 2017"
- cmake --build .
- ctest