Skip to content

Commit

Permalink
Introduce LAPACK cmake option
Browse files Browse the repository at this point in the history
Contributes to Reference-LAPACK#273
  • Loading branch information
a-andreyev committed May 8, 2020
1 parent 8e1e16c commit 047db53
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
cmake_minimum_required(VERSION 2.8.12)

project(LAPACK Fortran C)
project(LAPACK C)

option(LAPACK "Build LAPACK" ON)

if(LAPACK)
enable_language(Fortran)
endif()

set(LAPACK_MAJOR_VERSION 3)
set(LAPACK_MINOR_VERSION 9)
Expand Down

0 comments on commit 047db53

Please sign in to comment.