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.
|
cmake_minimum_required(VERSION 3.5) |
|
|
|
set(C_STANDARD 11) |
|
enable_testing() |
|
|
|
set(SRC_DIR ../../src) |
|
|
|
include_directories(${SRC_DIR}) |
|
|
|
add_executable(LogTest Log.test.c) |
|
target_link_libraries(LogTest log) |
|
add_test(LogTest ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/LogTest)
|
|
|