7 lines
280 B
CMake
7 lines
280 B
CMake
|
cmake_minimum_required(VERSION 3.10)
|
||
|
project(tests)
|
||
|
FILE(GLOB SRCS *.c)
|
||
|
add_executable(tests ${SRCS})
|
||
|
target_include_directories(tests PUBLIC ../include ../build/deps/check/src ../build/deps/check)
|
||
|
target_link_libraries(tests PUBLIC Lib check)
|
||
|
add_test(NAME mytests COMMAND tests)
|