Zadania rekrutacyjne i ćwiczeniowe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
343 B

cmake_minimum_required(VERSION 3.5)
project(log LANGUAGES C VERSION 0.1.0)
set(C_STANDARD 11)
set(TARGET ${PROJECT_NAME})
set(CMAKE_INCLUDE_CURRENT_DIR ON)
add_library(${TARGET}
src/Log.c
)
target_include_directories(${TARGET}
PRIVATE
src
PUBLIC
include
)
if (${BUILD_TESTS})
add_subdirectory(tests/integration)
endif()