Blame view

CMakeLists.txt 346 Bytes
a9ad68f7   Peter M. Groen   Setting up the re...
1
2
3
4
5
6
  cmake_minimum_required(VERSION 3.0)
  LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/submodules/cmake)
  
  include(projectheader)
  project_header(datatypes)
  
a6b8531d   Peter M. Groen   Implemented the V...
7
  set(REPOSITORY_PACKAGE_NAME ${PROJECT_NAME} CACHE STRING "Repository name for ${PROJECT_NAME}" FORCE)
a9ad68f7   Peter M. Groen   Setting up the re...
8
9
10
  add_subdirectory(src)
  
  # Test applications for each component.
a6b8531d   Peter M. Groen   Implemented the V...
11
  add_subdirectory(tests)
a9ad68f7   Peter M. Groen   Setting up the re...