Blame view

examples/sub/CMakeLists.txt 776 Bytes
51becbde   Peter M. Groen   Committed the ent...
1
2
3
4
5
6
7
  cmake_minimum_required(VERSION 3.0)
  LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../cmake)
  
  include(projectheader)
  project_header(test_mqtt_sub)
  
  include_directories( SYSTEM
427cbf54   Peter M. Groen   Preparation Subcl...
8
      ${CMAKE_CURRENT_SOURCE_DIR}/../../include
51becbde   Peter M. Groen   Committed the ent...
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  )
  
  include(compiler)
  set(SRC_LIST
      ${CMAKE_CURRENT_SOURCE_DIR}/subscriber.cpp
      ${CMAKE_CURRENT_SOURCE_DIR}/subscriber.h
      ${CMAKE_CURRENT_SOURCE_DIR}/main.cpp
  )
  
  add_executable( ${PROJECT_NAME}
      ${SRC_LIST}
  )
  
  target_link_libraries(
      ${PROJECT_NAME}
427cbf54   Peter M. Groen   Preparation Subcl...
24
      mqtt-cpp
51becbde   Peter M. Groen   Committed the ent...
25
26
27
28
29
30
31
32
33
34
  )
  
  set_target_properties( ${PROJECT_NAME} PROPERTIES
      RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
      LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib
      ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/archive
  )
  
  include(installation)
  install_application()