Blame view

CMakeLists.txt 753 Bytes
fe467aa5   Steven de Ridder   Initial commit MI...
1
  cmake_minimum_required(VERSION 3.0)
669ef612   Steven de Ridder   added cmake check...
2
3
4
5
6
7
8
9
10
  
  # Check to see where cmake is located.
  if( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/cmake )
      LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
  elseif( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../cmake )
      LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../cmake)
  else()
      return()
  endif()
fe467aa5   Steven de Ridder   Initial commit MI...
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  
  # Check to see if there is versioning information available
  if(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/osdev_versioning/cmake)
      LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/osdev_versioning/cmake)
      include(osdevversion)
  endif()
  
  include(projectheader)
  project_header(osdev_logutils)
  
  add_subdirectory(src)
  add_subdirectory(tests)
  
  # include(packaging)
  # package_component()