Projektarbeit Line Following Robot bei Prof. Chowanetz im WS22/23
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.

config.cmake.in 1.7KB

12345678910111213141516171819202122232425262728293031323334
  1. # ===================================================================================
  2. # @PROJECT_NAME@ CMake configuration file
  3. #
  4. # ** File generated automatically, do not modify **
  5. #
  6. # Usage from an external project:
  7. # In your CMakeLists.txt, add these lines:
  8. #
  9. # FIND_PACKAGE(@PROJECT_NAME@ REQUIRED )
  10. # TARGET_LINK_LIBRARIES(MY_TARGET_NAME ${@PROJECT_NAME@_LIBS})
  11. #
  12. # This file will define the following variables:
  13. # - @PROJECT_NAME@_LIBS : The list of libraries to links against.
  14. # - @PROJECT_NAME@_LIB_DIR : The directory where lib files are. Calling LINK_DIRECTORIES
  15. # with this path is NOT needed.
  16. # - @PROJECT_NAME@_VERSION : The version of this PROJECT_NAME build. Example: "1.2.0"
  17. # - @PROJECT_NAME@_VERSION_MAJOR : Major version part of VERSION. Example: "1"
  18. # - @PROJECT_NAME@_VERSION_MINOR : Minor version part of VERSION. Example: "2"
  19. # - @PROJECT_NAME@_VERSION_PATCH : Patch version part of VERSION. Example: "0"
  20. #
  21. # ===================================================================================
  22. INCLUDE_DIRECTORIES(@REQUIRED_INC_DIR@;@CMAKE_INSTALL_PREFIX@/include)
  23. LINK_DIRECTORIES("@CMAKE_INSTALL_PREFIX@/lib")
  24. SET(@PROJECT_NAME@_LIBS @REQUIRED_LIBRARIES@ @PROJECT_NAME@@PROJECT_DLLVERSION@)
  25. SET(@PROJECT_NAME@_FOUND "YES")
  26. SET(@PROJECT_NAME@_CV_FOUND "@PROJECT_CV_CREATED_FLAG@")
  27. SET(@PROJECT_NAME@_CV_LIBS @REQUIRED_LIBRARIES@ @PROJECT_NAME@@PROJECT_DLLVERSION@ @OpenCV_LIBS@ @PROJECT_NAME@_cv@PROJECT_DLLVERSION@)
  28. SET(@PROJECT_NAME@_VERSION @PROJECT_VERSION@)
  29. SET(@PROJECT_NAME@_VERSION_MAJOR @PROJECT_VERSION_MAJOR@)
  30. SET(@PROJECT_NAME@_VERSION_MINOR @PROJECT_VERSION_MINOR@)
  31. SET(@PROJECT_NAME@_VERSION_PATCH @PROJECT_VERSION_PATCH@)