2026-01-05 22:11:06 +01:00
wip
2025-08-23 13:42:05 +02:00
2025-11-19 20:38:43 +01:00
2025-08-23 13:37:48 +02:00
2026-01-05 22:11:06 +01:00
2026-01-05 22:11:06 +01:00
2025-11-23 19:08:02 +01:00
2025-08-23 13:36:41 +02:00
2026-01-05 22:11:06 +01:00
2026-01-05 22:11:06 +01:00
wip
2025-08-23 14:06:21 +02:00
2025-11-19 20:41:43 +01:00
2025-08-23 14:30:53 +02:00
2025-08-23 18:25:56 +02:00
2026-01-02 19:13:56 +01:00

TSTD

A C library providing various utilities.

Usage

To use TSTD in your CMake project, you can either build it from source or include it using FetchContent.

Integration with FetchContent

Add the following to your CMakeLists.txt:

cmake_minimum_required(VERSION 3.20)

project(myproj C)

set(CMAKE_C_STANDARD 23)
set(CMAKE_C_STANDARD_REQUIRED ON)

include(FetchContent)

FetchContent_Declare(
        tstd
        GIT_REPOSITORY https://github.com/Tilo-K/tstd.git
        GIT_TAG master
)

FetchContent_MakeAvailable(tstd)

add_executable(myapp src/main.c)
target_link_libraries(myapp PRIVATE tstd)
Description
No description provided
Readme 70 KiB
Languages
C 91.4%
CMake 8%
Shell 0.6%