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
291B

  1. find_path(FAAC_INCLUDE_DIR
  2. NAMES faac.h
  3. )
  4. find_library(FAAC_LIBRARY
  5. NAMES faac
  6. )
  7. set(FAAC_INCLUDE_DIRS ${FAAC_INCLUDE_DIR})
  8. set(FAAC_LIBRARIES ${FAAC_LIBRARY})
  9. include(FindPackageHandleStandardArgs)
  10. find_package_handle_standard_args(FAAC DEFAULT_MSG FAAC_LIBRARY FAAC_INCLUDE_DIR)