From f6cf78a10bf7a3a9ba0dba4701caf871873463b7 Mon Sep 17 00:00:00 2001 From: Tilo-K Date: Sun, 23 Nov 2025 19:08:02 +0100 Subject: [PATCH] feat: add some config --- .gitignore | 4 +++- CMakeLists.txt | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 723ef36..b3c9998 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -.idea \ No newline at end of file +.idea +build +.cache diff --git a/CMakeLists.txt b/CMakeLists.txt index 49435a3..b091943 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,6 +3,8 @@ project(tstd C) set(CMAKE_C_STANDARD 23) +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + add_library(tstd STATIC library.c include/tstd/string.h string.c