Blame view

CMakeLists.txt 369 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)
217854d4   Peter M. Groen   Create library as...
8
  set(BUILD_STATIC "ON")
a9ad68f7   Peter M. Groen   Setting up the re...
9
10
11
  add_subdirectory(src)
  
  # Test applications for each component.
a6b8531d   Peter M. Groen   Implemented the V...
12
  add_subdirectory(tests)
a9ad68f7   Peter M. Groen   Setting up the re...