mirror of
https://github.com/Tilo-K/tstd.git
synced 2026-01-10 06:51:01 +00:00
21 lines
450 B
CMake
21 lines
450 B
CMake
cmake_minimum_required(VERSION 4.0)
|
|
project(tstd C)
|
|
|
|
set(CMAKE_C_STANDARD 23)
|
|
|
|
add_library(tstd STATIC library.c
|
|
include/string.h
|
|
string.c)
|
|
|
|
|
|
add_executable(test_tstd test/test_main.c)
|
|
target_link_libraries(test_tstd tstd)
|
|
|
|
target_include_directories(tstd
|
|
PUBLIC
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
$<INSTALL_INTERFACE:include>
|
|
)
|
|
|
|
enable_testing()
|
|
add_test(NAME tstd_tests COMMAND test_tstd) |