Skip to content
Snippets Groups Projects
Select Git revision
  • d5b00f5c2bae667be974b8c6965da69f8706067c
  • master default
  • include-tests
  • remove-yaml-quotes
  • configurable-ci-setup-lookup-path
  • dev-image-test-bak
  • dev-images
  • tmp/deploy-image-build
  • fast-ci
  • modular-templates
10 results

pre-deploy-cleanup.bash

Blame
  • Forked from tecnalia_robotics-public / templates
    Source project has a limited visibility.
    CMakeLists.txt 581 B
    CMAKE_MINIMUM_REQUIRED(VERSION 3.14)
    project (class_server)
    
    include_directories(include ${Boost_INCLUDE_DIRS} ${YAML_INCLUDE_DIR})
    
    add_executable(${PROJECT_NAME} src/class_server_main.cpp src/class_server.cpp)
    target_link_libraries(${PROJECT_NAME} logger communication  yaml_tools yaml-cpp ${Boost_LIBRARIES})
    
    add_executable(class_client src/class_client_example.cpp)
    target_link_libraries(class_client logger communication  yaml_tools yaml-cpp ${Boost_LIBRARIES})
    
    
    # 'make install' to the correct location
    install(TARGETS ${PROJECT_NAME}
       RUNTIME  DESTINATION class_server)