Blame view

src/CMakeLists.txt 344 Bytes
13df26c3   Steven   Static Logger cla...
1
2
3
4
  cmake_minimum_required(VERSION 3.12)
  include(projectheader)
  project_header(logger)
  
f36eb42d   Peter M. Groen   Add static build-...
5
6
  set(BUILD_AS_STATIC "ON")
  
13df26c3   Steven   Static Logger cla...
7
8
9
10
11
12
  include_directories( SYSTEM
  )
  
  include(compiler)
  
  set(SRC_LIST
13df26c3   Steven   Static Logger cla...
13
14
15
16
17
18
19
20
21
22
      ${CMAKE_CURRENT_SOURCE_DIR}/threadcontext.cpp
      ${CMAKE_CURRENT_SOURCE_DIR}/log.cpp
  )
  
  include(library)
  add_libraries(
  )
  
  include(installation)
  install_component()