Logo white

open_source / logger

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • logger
  • src
  • CMakeLists.txt
  • Add static build-switch
    f36eb42d
    Peter M. Groen authored
    2022-04-21 15:49:08 +0200  
    Browse Code ยป
CMakeLists.txt 344 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
cmake_minimum_required(VERSION 3.12)
include(projectheader)
project_header(logger)

set(BUILD_AS_STATIC "ON")

include_directories( SYSTEM
)

include(compiler)

set(SRC_LIST
    ${CMAKE_CURRENT_SOURCE_DIR}/threadcontext.cpp
    ${CMAKE_CURRENT_SOURCE_DIR}/log.cpp
)

include(library)
add_libraries(
)

include(installation)
install_component()