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.

FindOpenViBEContributions.cmake 553B

1234567891011121314
  1. # ---------------------------------
  2. # Finds OpenViBE contributions
  3. # Only serves to set up a define for the preprocessor
  4. # ---------------------------------
  5. FIND_PATH(PATH_OPENVIBE_CONTRIBUTIONS common/contribAcquisitionServer.cmake PATHS ${OV_BASE_DIR}/contrib NO_DEFAULT_PATH)
  6. IF(PATH_OPENVIBE_CONTRIBUTIONS)
  7. debug_message( " Found openvibe-contributions...")
  8. ADD_DEFINITIONS(-DTARGET_HAS_OpenViBEContributions)
  9. ELSE(PATH_OPENVIBE_CONTRIBUTIONS)
  10. MESSAGE(WARNING " FAILED to find openvibe-contributions...")
  11. ENDIF(PATH_OPENVIBE_CONTRIBUTIONS)