Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove CMake-language block-end command arguments | Kitware Robot | 2012-08-13 | 1 | -57/+57 |
| | | | | | | | | | | | | | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | egrep -z -v 'Tests/CMakeTests/While-Endwhile-' | xargs -0 sed -i -f convert.sed && rm convert.sed | ||||
* | remove lib64 Unix paths if the respective lib path is also given | Rolf Eike Beer | 2012-07-21 | 1 | -2/+2 |
| | | | | If FIND_LIBRARY_USE_LIB64_PATHS is set both will be searched anyway. | ||||
* | FindBLAS/FindLAPACK: Work with MKL version 10.3 (#12924, #12925) | Alexey Ozeritsky | 2012-02-16 | 1 | -31/+60 |
| | |||||
* | FindLAPACK: List thread libs to avoid link errors (#12625) | Tim Gallagher | 2011-12-13 | 1 | -1/+1 |
| | |||||
* | FindLAPACK: Correct CMAKE_FIND_LIBRARY_SUFFIXES spelling (#12624) | Tim Gallagher | 2011-12-13 | 1 | -4/+4 |
| | |||||
* | FindLAPACK: Fix linking to static LAPACK on Unix (#12477) | Alexey Ozeritsky | 2011-12-05 | 1 | -1/+1 |
| | |||||
* | FindBLAS/LAPACK fixes | Alexey Ozeritsky | 2011-09-01 | 1 | -2/+4 |
| | | | | | fixed: CMAKE_FIND_LIBRRAY_SUFFIXES misprint added: ATLAS vendor to FindLAPACK module | ||||
* | FindBLAS/LAPACK fixes | Alexey Ozeritsky | 2011-08-31 | 1 | -28/+34 |
| | | | | | | | | fixed: saving/changing/restoring CMAKE_FIND_LIBRARY_SUFFIXES variable. fixed: BLA_VENDORs "Apple" (Accelerate Framework) and "NAS" (vecLib Framework) fail as 'cblas_dgemm_' doesn't exist. fixed: improve "Generic" detection on Ubuntu (and I assume Debian) (work with libblas3gf and liblapack3gf packages). | ||||
* | ACML-GPU supportede | Alexey Ozeritsky | 2011-08-13 | 1 | -2/+2 |
| | |||||
* | gotoblas supported | Alexey Ozeritsky | 2011-08-11 | 1 | -0/+15 |
| | |||||
* | fixed: search of acml libraries | Alexey Ozeritsky | 2011-08-11 | 1 | -24/+6 |
| | |||||
* | FindLAPACK works with C/C++ only projects (issue 0009976) | Alexey Ozeritsky | 2010-12-27 | 1 | -11/+11 |
| | |||||
* | find ACML fixes | Alexey Ozeritsky | 2010-12-27 | 1 | -1/+11 |
| | |||||
* | Modules: Fix spelling 'To distributed' -> 'To distribute' | Todd Gamblin | 2010-08-09 | 1 | -1/+1 |
| | |||||
* | Convert CMake find-modules to BSD License | Brad King | 2009-09-28 | 1 | -0/+14 |
| | | | | | | | This adds copyright/license notification blocks CMake's find-modules. Many of the modules had no notices at all. Some had notices referring to the BSD license already. This commit normalizes existing notices and adds missing notices. | ||||
* | STYLE: fix typos in the docs | Alexander Neundorf | 2009-04-19 | 1 | -1/+1 |
| | | | | Alex | ||||
* | ENH: change to correct line feed | Bill Hoffman | 2008-07-22 | 1 | -278/+278 |
| | |||||
* | ENH: FindBLAS.cmake, FindLAPACK.cmake modules were redesigned so now you ↵ | Alin Elena | 2008-07-22 | 1 | -211/+278 |
| | | | | have three new variables BLA_VENDOR (you can specify the VENDOR), BLA_STATIC (gets the static version of libs), BLA_F95 (gets the fortran 95 interface). BLA_VENDOR can be specified as an environment variable. Intel mkls libs need FindThreads to be found correctly so you will need to enable the C/CXX | ||||
* | ENH: get out of module if no fortran | Bill Hoffman | 2008-07-21 | 1 | -1/+2 |
| | |||||
* | ENH: this should fail only if required is sent to find package | Bill Hoffman | 2008-07-21 | 1 | -205/+210 |
| | |||||
* | ENH: checks if Fortran is enbaled. If not an error message is produced. | Alin Elena | 2008-07-21 | 1 | -1/+7 |
| | |||||
* | ENH: Modules/CheckFortranFunctionExists.cmake helps gfortran to check the ↵ | Alin Elena | 2008-07-21 | 1 | -3/+6 |
| | | | | | | existence of a file ENH: Modules/FindLAPACK.cmake returns the full list of libraries required to link against Lapack | ||||
* | ENH: FindBLAS.cmake&FindLAPACK updated to support intel mkl 10 | Alin Elena | 2008-03-24 | 1 | -180/+196 |
| | |||||
* | ENH: FindBLAS.cmake and FindLAPACK.cmake modules added. They locate various ↵ | Alin Elena | 2007-10-10 | 1 | -0/+180 |
implementations of blas and lapack libraries. CheckFortranFunctionExists.cmake provides a test function to check if the library is usabale. I have also changed the -KPIC flag to -fPIC in Linux-ifort.cmake. |