CMakeLists.txt 295 Bytes
cmake_minimum_required(VERSION 3.0)
project(osdev_logger)

LIST( APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/submodules/cmake )

include(projectheader)
project_header(osdev_logger)

set(BUILD_STATIC "ON")

add_subdirectory(src)
add_subdirectory(tests)

#include(packaging)
#package_component()