Browse Source

Test DYNAMIC_ARCH on appveyor

tags/v0.3.0
Isuru Fernando 8 years ago
parent
commit
6f83004252
2 changed files with 4 additions and 0 deletions
  1. +1
    -0
      CMakeLists.txt
  2. +3
    -0
      appveyor.yml

+ 1
- 0
CMakeLists.txt View File

@@ -27,6 +27,7 @@ option(BUILD_WITHOUT_LAPACK "Without LAPACK and LAPACKE (Only BLAS or CBLAS)" ON
endif()
option(BUILD_WITHOUT_CBLAS "Without CBLAS" OFF)
option(BUILD_DEBUG "Build Debug Version" OFF)
option(DYNAMIC_ARCH "Build with DYNAMIC_ARCH" OFF)
#######
if(BUILD_WITHOUT_LAPACK)
set(NO_LAPACK 1)


+ 3
- 0
appveyor.yml View File

@@ -25,6 +25,8 @@ skip_commits:

environment:
matrix:
- COMPILER: clang-cl
DYNAMIC_ARCH: ON
- COMPILER: clang-cl
- COMPILER: cl

@@ -39,6 +41,7 @@ before_build:
- cd c:\projects\OpenBLAS
- if [%COMPILER%]==[cl] cmake -G "Visual Studio 12 Win64" .
- if [%COMPILER%]==[clang-cl] cmake -G "Ninja" -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_C_COMPILER=clang-cl .
- if [%DYNAMIC_ARCH%]==[ON] cmake -DDYNAMIC_ARCH=ON .

build_script:
- cmake --build .


Loading…
Cancel
Save