You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
366 B
17 lines
366 B
if (GMM_INCLUDE_DIR)
|
|
# in cache already
|
|
set(GMM_FOUND TRUE)
|
|
else (GMM_INCLUDE_DIR)
|
|
|
|
find_path(GMM_INCLUDE_DIR NAMES gmm/gmm.h
|
|
PATHS
|
|
${INCLUDE_INSTALL_DIR}
|
|
${GMM_INCLUDE_PATH}
|
|
)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(GMM DEFAULT_MSG GMM_INCLUDE_DIR )
|
|
|
|
mark_as_advanced(GMM_INCLUDE_DIR)
|
|
|
|
endif(GMM_INCLUDE_DIR)
|