diff options
author | Kyle Guinn <elyk03@gmail.com> | 2017-01-21 02:45:38 -0600 |
---|---|---|
committer | Kyle Guinn <elyk03@gmail.com> | 2017-01-21 03:47:17 -0600 |
commit | 49a21bf57bbd24bceb0a1ba521fddafcf68e3387 (patch) | |
tree | d53c87caf1ff1c7e8effb3d3207a78851849b211 /TESTING/LIN | |
parent | f897ea5e9e97c7844f5489db782c2354950e96a6 (diff) | |
download | lapack-49a21bf57bbd24bceb0a1ba521fddafcf68e3387.tar.gz lapack-49a21bf57bbd24bceb0a1ba521fddafcf68e3387.tar.bz2 lapack-49a21bf57bbd24bceb0a1ba521fddafcf68e3387.zip |
Switch spelling of USE_XBLAS
All other CMakeLists are using "USE_XBLAS" with the underscore.
All Makefiles are using "USEXBLAS" with no underscore.
Should probably make this consistent in the future.
Diffstat (limited to 'TESTING/LIN')
-rw-r--r-- | TESTING/LIN/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TESTING/LIN/CMakeLists.txt b/TESTING/LIN/CMakeLists.txt index 6e962b6e..27ee2659 100644 --- a/TESTING/LIN/CMakeLists.txt +++ b/TESTING/LIN/CMakeLists.txt @@ -37,7 +37,7 @@ set(SLINTST schkaa.f schklqt.f schklqtp.f schktsqr.f serrlqt.f serrlqtp.f serrtsqr.f stsqr01.f slqt04.f slqt05.f) -if(USEXBLAS) +if(USE_XBLAS) list(APPEND SLINTST sdrvgbx.f sdrvgex.f sdrvsyx.f sdrvpox.f serrvxx.f serrgex.f serrsyx.f serrpox.f sebchvxx.f) @@ -82,7 +82,7 @@ set(CLINTST cchkaa.f cchklqt.f cchklqtp.f cchktsqr.f cerrlqt.f cerrlqtp.f cerrtsqr.f ctsqr01.f clqt04.f clqt05.f) -if(USEXBLAS) +if(USE_XBLAS) list(APPEND CLINTST cdrvgbx.f cdrvgex.f cdrvhex.f cdrvsyx.f cdrvpox.f cerrvxx.f cerrgex.f cerrhex.f cerrsyx.f cerrpox.f cebchvxx.f) @@ -123,7 +123,7 @@ set(DLINTST dchkaa.f dchklq.f dchklqt.f dchklqtp.f dchktsqr.f derrlqt.f derrlqtp.f derrtsqr.f dtsqr01.f dlqt04.f dlqt05.f) -if(USEXBLAS) +if(USE_XBLAS) list(APPEND DLINTST ddrvgbx.f ddrvgex.f ddrvsyx.f ddrvpox.f derrvxx.f derrgex.f derrsyx.f derrpox.f debchvxx.f) @@ -168,7 +168,7 @@ set(ZLINTST zchkaa.f zchklqt.f zchklqtp.f zchktsqr.f zerrlqt.f zerrlqtp.f zerrtsqr.f ztsqr01.f zlqt04.f zlqt05.f) -if(USEXBLAS) +if(USE_XBLAS) list(APPEND ZLINTST zdrvgbx.f zdrvgex.f zdrvhex.f zdrvsyx.f zdrvpox.f zerrvxx.f zerrgex.f zerrhex.f zerrsyx.f zerrpox.f zebchvxx.f) |