We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f28c937 commit 368d79fCopy full SHA for 368d79f
.appveyor.yml
@@ -3,6 +3,7 @@ build: false
3
os: Visual Studio 2015
4
5
platform:
6
+ - x86
7
- x64
8
9
environment:
@@ -40,7 +41,8 @@ install:
40
41
- conda update -q conda
42
- conda info -a
43
- conda install cmake xtl -c conda-forge
- - cmake -G "NMake Makefiles" -D DOWNLOAD_GTEST=1 -D ENABLE_XTL_COMPLEX=1 -D CMAKE_INSTALL_PREFIX=%MINICONDA%\\LIBRARY -D CMAKE_BUILD_TYPE=Release .
44
+ - ps: if($env:Platform -eq "x64"){$env:EnableXTL=1} else {$env:EnableXTL=0}
45
+ - cmake -G "NMake Makefiles" -D DOWNLOAD_GTEST=1 -D ENABLE_XTL_COMPLEX=%EnableXTL% -D CMAKE_INSTALL_PREFIX=%MINICONDA%\\LIBRARY -D CMAKE_BUILD_TYPE=Release .
46
- nmake test_xsimd
47
- cd test
48
0 commit comments