🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
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.

21 lines
581 B

  1. # - Find AudioIO includes and libraries
  2. #
  3. # AUDIOIO_FOUND - True if AUDIOIO_INCLUDE_DIR is found
  4. # AUDIOIO_INCLUDE_DIRS - Set when AUDIOIO_INCLUDE_DIR is found
  5. #
  6. # AUDIOIO_INCLUDE_DIR - where to find sys/audioio.h, etc.
  7. #
  8. find_path(AUDIOIO_INCLUDE_DIR
  9. NAMES sys/audioio.h
  10. DOC "The AudioIO include directory"
  11. )
  12. include(FindPackageHandleStandardArgs)
  13. find_package_handle_standard_args(AudioIO REQUIRED_VARS AUDIOIO_INCLUDE_DIR)
  14. if(AUDIOIO_FOUND)
  15. set(AUDIOIO_INCLUDE_DIRS ${AUDIOIO_INCLUDE_DIR})
  16. endif()
  17. mark_as_advanced(AUDIOIO_INCLUDE_DIR)