File: K3DFindSuperLU.cmake

package info (click to toggle)
k3d 0.8.0.2-18
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 40,948 kB
  • sloc: cpp: 171,303; ansic: 24,129; xml: 6,995; python: 5,796; makefile: 671; sh: 22
file content (17 lines) | stat: -rw-r--r-- 458 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
SET(K3D_SUPERLU_FOUND 0)

#note: Include files are assumed to be in the standard include path, in the superlu dir

FIND_LIBRARY(K3D_SUPERLU_LIBRARY superlu
	DOC "The SuperLU library"
	)
MARK_AS_ADVANCED(K3D_SUPERLU_LIBRARY)

FIND_LIBRARY(K3D_BLAS_LIBRARY blas
	DOC "The BLAS library used by SuperLU"
	)
MARK_AS_ADVANCED(K3D_BLAS_LIBRARY)

IF(K3D_SUPERLU_LIBRARY AND K3D_BLAS_LIBRARY)
	SET(K3D_SUPERLU_FOUND 1)
ENDIF(K3D_SUPERLU_LIBRARY AND K3D_BLAS_LIBRARY)