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 bb4dfa6 commit 38acaa6Copy full SHA for 38acaa6
.appveyor.yml
@@ -0,0 +1,23 @@
1
+environment:
2
+ CONDA_INSTALL_LOCN: C:\\Miniconda36-x64
3
+
4
+platform:
5
+ - x64
6
7
+install:
8
+ # Add path, activate `conda` and update conda.
9
+ - cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
10
+ - cmd: conda update --yes --quiet conda
11
+ # Add our channels.
12
+ - cmd: conda config --add channels defaults
13
+ - cmd: conda config --add channels conda-forge
14
+ - cmd: conda config --add channels isuruf/label/flang
15
+ - cmd: conda install clangdev openmp cmake
16
17
18
+build_script:
19
+ - mkdir build
20
+ - cd build
21
+ - set "PATH=%cd%\bin;%PATH%"
22
+ - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
23
+ - nmake
0 commit comments