FindOCLFFT.cmake 414 B

1234567891011121314
  1. # Try to find liboclfft and clFFT.h. Once found the following variables will be
  2. # defined:
  3. #
  4. # OCLFFT_FOUND
  5. # OCLFFT_INCLUDE_DIRS
  6. # OCLFFT_LIBRARIES
  7. find_path(OCLFFT_INCLUDE_DIRS clFFT.h)
  8. find_library(OCLFFT_LIBRARIES oclfft)
  9. include(FindPackageHandleStandardArgs)
  10. find_package_handle_standard_args(OCLFFT DEFAULT_MSG OCLFFT_INCLUDE_DIRS OCLFFT_LIBRARIES)
  11. mark_as_advanced(OCLFFT_INCLUDE_DIRS OCLFFT_LIBRARIES)