Blame view

CMakeLists.txt 1.1 KB
5fb07bda   Peter M. Groen   Initial setup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  cmake_minimum_required(VERSION 3.12)
  LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/submodules/cmake)
  
  include(projectheader)
  project_header(qcalpi)
  
  find_package( Qt5Core       REQUIRED )
  find_package( Qt5Gui        REQUIRED )
  find_package( Qt5Widgets    REQUIRED )
  
  include_directories( SYSTEM
      ${Qt5Core_INCLUDE_DIRS}
      ${Qt5Gui_INCLUDE_DIRS}
      ${Qt5Widgets_INCLUDE_DIRS}
  )
  
  include(compiler)
  
  set(SRC_LIST
      ${CMAKE_CURRENT_SOURCE_DIR}/main.cpp
232f8034   Peter M. Groen   Initial setup
21
22
23
24
25
26
      ${CMAKE_CURRENT_SOURCE_DIR}/CalcPi.cpp
  )
  
  include(qtuic)
  create_ui(SRC_LIST UIC_LIST
      ${CMAKE_CURRENT_SOURCE_DIR}/CalcPiForm.ui
5fb07bda   Peter M. Groen   Initial setup
27
28
29
30
  )
  
  include(qtmoc)
  create_mocs( SRC_LIST MOC_LIST
232f8034   Peter M. Groen   Initial setup
31
      ${CMAKE_CURRENT_SOURCE_DIR}/CalcPi.h
5fb07bda   Peter M. Groen   Initial setup
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
  )
  
  add_executable( ${PROJECT_NAME}
      ${SRC_LIST}
  )
  
  target_link_libraries(
      ${PROJECT_NAME}
      ${Qt5Core_LIBRARIES}
      ${Qt5Gui_LIBRARIES}
      ${Qt5Widgets_LIBRARIES}
  )
  
  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()