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.

FindSourceDependencyDSPFilters.cmake 504B

12345678910
  1. # ---------------------------------
  2. # Finds DSP filters sources
  3. # Sets dsp_filters_source_files
  4. # Adds appropriate include dir
  5. # ---------------------------------
  6. FILE(GLOB_RECURSE dsp_filters_source_files ${OV_SOURCE_DEPENDENCIES_PATH}/dsp-filters/*.cpp ${OV_SOURCE_DEPENDENCIES_PATH}/dsp-filters/*.c ${OV_SOURCE_DEPENDENCIES_PATH}/dsp-filters/*.h)
  7. ADD_DEFINITIONS(-DTARGET_HAS_DSPFilters)
  8. INCLUDE_DIRECTORIES("${OV_SOURCE_DEPENDENCIES_PATH}")
  9. SET(SRC_FILES "${SRC_FILES};${dsp_filters_source_files}")