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.

FindSourceDependencyJSON.cmake 414B

123456789
  1. # ---------------------------------
  2. # Finds JSON sources
  3. # Sets json_source_files
  4. # Adds appropriate include dir
  5. # ---------------------------------
  6. FILE(GLOB_RECURSE json_source_files ${OV_SOURCE_DEPENDENCIES_PATH}/json/*.cpp ${OV_SOURCE_DEPENDENCIES_PATH}/json/*.c ${OV_SOURCE_DEPENDENCIES_PATH}/json/*.h)
  7. INCLUDE_DIRECTORIES("${OV_SOURCE_DEPENDENCIES_PATH}")
  8. SET(SRC_FILES "${SRC_FILES};${json_source_files}")