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.

FindSourceDependencyLepton.cmake 423B

12345678910
  1. # ---------------------------------
  2. # Finds Lepton sources
  3. # Sets lepton_source_files
  4. # Adds appropriate include dir
  5. # ---------------------------------
  6. FILE(GLOB_RECURSE lepton_source_files ${OV_SOURCE_DEPENDENCIES_PATH}/lepton/*.cpp ${OV_SOURCE_DEPENDENCIES_PATH}/lepton/*.h)
  7. ADD_DEFINITIONS(-DTARGET_HAS_LEPTON)
  8. INCLUDE_DIRECTORIES("${OV_SOURCE_DEPENDENCIES_PATH}")
  9. SET(SRC_FILES "${SRC_FILES};${lepton_source_files}")