Blame view

src/CMakeLists.txt 629 Bytes
1a51a0a3   Peter M. Groen   Fixed CMakeLists
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
  cmake_minimum_required(VERSION 3.16)
  LIST( APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/submodules/cmake )
  include(projectheader)
  project_header(datamodels)
  
  find_package(Qt5 "5.15.0" COMPONENTS Core CONFIG REQUIRED )
  
  include_directories( SYSTEM
      ${Qt5Core_INCLUDE_DIRS}
  )
  
  include(compiler)
  
  set( SRC_LIST
      ${CMAKE_CURRENT_SOURCE_DIR}/tablemodel/tablemodel.cpp
  )
  
  include(qtmoc)
  create_mocs( SRC_LIST MOC_LIST
      ${CMAKE_CURRENT_SOURCE_DIR}/tablemodel/tablemodel.h
  )
  
  link_directories(
      ${CMAKE_BINARY_DIR}/lib
  )
  
  include(library)
  add_libraries(
      ${Qt5Core_LIBRARIES}
  )
  
  
  include(installation)
  install_component()