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

  1. if (GMM_INCLUDE_DIR)
  2. # in cache already
  3. set(GMM_FOUND TRUE)
  4. else (GMM_INCLUDE_DIR)
  5. find_path(GMM_INCLUDE_DIR NAMES gmm/gmm.h
  6. PATHS
  7. ${INCLUDE_INSTALL_DIR}
  8. ${GMM_INCLUDE_PATH}
  9. )
  10. include(FindPackageHandleStandardArgs)
  11. FIND_PACKAGE_HANDLE_STANDARD_ARGS(GMM DEFAULT_MSG GMM_INCLUDE_DIR )
  12. mark_as_advanced(GMM_INCLUDE_DIR)
  13. endif(GMM_INCLUDE_DIR)