Blame view

CMakeLists.txt 475 Bytes
1c528733   Peter M. Groen   Setting up a firs...
1
2
3
4
5
6
7
8
9
  cmake_minimum_required(VERSION 3.10)
  project(osdev_xml)
  LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/submodules/cmake)
  
  # =================================================================
  # = Include build information
  include(projectheader)
  project_header(osdev_xml)
  
b8b1566f   Peter M. Groen   Finished setting ...
10
11
12
  # First we build all the artifacts / dependencies
  add_subdirectory(submodules/logger)
  
1c528733   Peter M. Groen   Setting up a firs...
13
14
15
16
17
18
  add_subdirectory(src)
  #add_subdirectory(test)
  #add_subdirectory(examples)
  
  include(packaging)
  package_component()