diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-03-21 09:26:47 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-03-21 09:26:47 (GMT) |
commit | 2d9ab8101ca2d287b7b033fc4c3057f56d9c5068 (patch) | |
tree | 4d162f6d4d58f961913dc09220921461911c02df /CMakeLists.txt | |
parent | 61b8806cf3a1164ae145d42cc48ca7c432e2ab53 (diff) |
Only compile Fortran compatibility if requested. Fix error in commit b97f4dff
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3a810af..3e32141 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) include_directories(${CMAKE_SOURCE_DIR}/include) -option(BUILD_FORTRAN "Build Fortran examples" OFF) +option(BUILD_FORTRAN "Build Fortran compatible library and examples for testing" OFF) option(USE_OPENMP "Try to use the OpenMP library (if available)" ON) if(USE_OPENMP) |