Blame view

CMakeLists.txt 447 Bytes
51becbde   Peter M. Groen   Committed the ent...
1
  cmake_minimum_required(VERSION 3.0)
bbca8c1a   Peter M. Groen   Added comments to...
2
  project(osdev_mqtt)
199d7075   Peter M. Groen   implement logging...
3
  LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/submodules/cmake)
51becbde   Peter M. Groen   Committed the ent...
4
  
59367614   Peter M. Groen   Install script..
5
6
  # ==============================================================================
  # = Include build information
51becbde   Peter M. Groen   Committed the ent...
7
  include(projectheader)
51becbde   Peter M. Groen   Committed the ent...
8
9
  project_header(osdev_mqtt)
  
199d7075   Peter M. Groen   implement logging...
10
  add_subdirectory(submodules/logger)
51becbde   Peter M. Groen   Committed the ent...
11
  add_subdirectory(src)
b5d9e433   Peter M. Groen   Fixed License Hea...
12
13
  add_subdirectory(examples/pub)
  add_subdirectory(examples/sub)
51becbde   Peter M. Groen   Committed the ent...
14
  
bbca8c1a   Peter M. Groen   Added comments to...
15
16
  include(packaging)
  package_component()