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.

CMakeLists.txt 376B

12345678910
  1. add_library(Interpreter interpreter.cpp)
  2. set_target_properties(Interpreter PROPERTIES VERSION ${PROJECT_VERSION})
  3. target_include_directories(Interpreter PRIVATE ${Utils_SOURCE_DIRS})
  4. target_include_directories(Interpreter PUBLIC .)
  5. target_link_libraries( Interpreter Utils)
  6. set(CPACK_PROJECT_NAME ${PROJECT_NAME})
  7. set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
  8. include(CPack)