Blame view

CMakeLists.txt 393 Bytes
30448f62   Peter M. Groen   Replace Qt with s...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  cmake_minimum_required(VERSION 3.0)
  project(config)
  
  LIST( APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/submodules/cmake )
  
  include(projectheader)
  project_header(config)
  
  # Build the artifacts
  add_subdirectory(${CMAKE_SOURCE_DIR}/submodules/logger)
  add_subdirectory(${CMAKE_SOURCE_DIR}/submodules/pugixml)
  
  # Build the source code
  add_subdirectory(src)
  
  include(packaging)
  package_component()