File: K3DFindGMM.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 (12 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
SET(K3D_GMM_FOUND 0)

FIND_PATH(K3D_GMM_INCLUDE_DIR gmm/gmm.h 
	/usr/include
	DOC "Directory where the gmm directory containing header files is located"
	)
MARK_AS_ADVANCED(K3D_GMM_INCLUDE_DIR)

IF(EXISTS ${K3D_GMM_INCLUDE_DIR}/gmm/gmm.h)
	SET(K3D_GMM_FOUND 1)
ENDIF(EXISTS ${K3D_GMM_INCLUDE_DIR}/gmm/gmm.h)