Re: [CMake] Finding Blas

2009-12-21 Thread Brad King
Shepherd, Jason F wrote: > A follow on question: What if I don't want to require clapack, > but want to allow it if available. What is the correct way to > check for clapack or lapack? The find_package() command has a QUIET option that could be used to look for one and then the other without com

Re: [CMake] Finding Blas

2009-10-12 Thread Shepherd, Jason F
> Shepherd, Jason F wrote: > > Hi all, > > > > I'm currently using Cmake 2.8b. I'm trying to add a requirement > > (based on another conditional statement) to find the LAPACK > and BLAS > > packages to VTK's Infovis capabilities. I've added the following > > lines to my CMakeLists.txt > >

Re: [CMake] Finding Blas

2009-10-09 Thread Bill Hoffman
Shepherd, Jason F wrote: Hi all, I'm currently using Cmake 2.8b. I'm trying to add a requirement (based on another conditional statement) to find the LAPACK and BLAS packages to VTK's Infovis capabilities. I've added the following lines to my CMakeLists.txt FIND_PACKAGE(BLAS REQUIRED)

[CMake] Finding Blas

2009-10-09 Thread Shepherd, Jason F
Hi all, I'm currently using Cmake 2.8b. I'm trying to add a requirement (based on another conditional statement) to find the LAPACK and BLAS packages to VTK's Infovis capabilities. I've added the following lines to my CMakeLists.txt FIND_PACKAGE(BLAS REQUIRED) FIND_PACKAGE(LAPACK REQUIRED