Browse Source

Add lapack-test

tags/v0.3.11^2
Martin Kroeker GitHub 5 years ago
parent
commit
1d63631afe
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      CMakeLists.txt

+ 5
- 2
CMakeLists.txt View File

@@ -6,8 +6,7 @@ cmake_minimum_required(VERSION 2.8.5)
project(OpenBLAS C ASM)
set(OpenBLAS_MAJOR_VERSION 0)
set(OpenBLAS_MINOR_VERSION 3)
set(OpenBLAS_PATCH_VERSION 10.dev)

set(OpenBLAS_PATCH_VERSION 9.dev)
set(OpenBLAS_VERSION "${OpenBLAS_MAJOR_VERSION}.${OpenBLAS_MINOR_VERSION}.${OpenBLAS_PATCH_VERSION}")

# Adhere to GNU filesystem layout conventions
@@ -236,6 +235,10 @@ if (NOT MSVC AND NOT NOFORTRAN)
endif()
endif()

if (NOT NOFORTRAN)
add_subdirectory(lapack-netlib/TESTING)
endif()

set_target_properties(${OpenBLAS_LIBNAME} PROPERTIES
VERSION ${OpenBLAS_MAJOR_VERSION}.${OpenBLAS_MINOR_VERSION}
SOVERSION ${OpenBLAS_MAJOR_VERSION}


Loading…
Cancel
Save