Blame view

src/controlcentre/CMakeLists.txt 1.7 KB
bdd63e89   Peter M. Groen   Setting up build-...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  cmake_minimum_required(VERSION 3.12)
  # ============================================================================
  # Check to see if we have cmake directory
  if(IS_DIRECTORY ${CMAKE_SOURCE_DIR}/cmake)
      message( STATUS "Looks like we're a single module" )
      LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
  else()
      message( FATAL_ERROR "No cmake directory found. Did you run the submodules script?" )
  endif()
  
  # ==============================================================================
  # Check to see if there is versioning information available
  if(IS_DIRECTORY ${CMAKE_SOURCE_DIR}/versioning)
      LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/versioning/cmake)
  else()
      message( FATAL_ERROR "No ${CMAKE_SOURCE_DIR}/osdev_versioning directory found." )
  endif()
  
  # ==============================================================================
  include(projectheader)
  project_header(mqttcc)
  
  find_package( Qt5Core    REQUIRED )
  find_package( Qt5Gui     REQUIRED )
  find_package( Qt5Widgets REQUIRED )
  
  include(compiler)
  
  include_directories(
      ${Qt5Core_INCLUDE_DIRS}
      ${Qt5Gui_INCLUDE_DIRS}
      ${Qt5Widget_INCLUDE_DIRS}
  )
  
  set(SRC_LIST
      ${CMAKE_CURRENT_SOURCE_DIR}/controlcentre.cpp
      ${CMAKE_CURRENT_SOURCE_DIR}/main.cpp
  )
  
  include(qtmoc)
  create_mocs( SRC_LIST MOC_LIST
      ${CMAKE_CURRENT_SOURCE_DIR}/controlcentre.h
  )
  
  add_executable( ${PROJECT_NAME}
      ${SRC_LIST}
  )
  
  target_link_libraries( ${PROJECT_NAME}
      ${Qt5Core_LIBRARIES}
      ${Qt5Gui_LIBRARIES}
      ${Qt5Widget_LIBRARIES}
      mqtt-cpp
  )
  
  set_target_properties( ${PROJECT_NAME} PROPERTIES
      RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
      LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib
  )
  
  include(installation)
  install_application()