FEAT: Added assign and resize functions

API: Fixed CMAKELISTS.txt to work without the encapsulation as it will not work or be viable right now
This commit is contained in:
Andrew Haynes
2026-05-31 21:15:58 -04:00
parent aa7d2f37bf
commit 261e672237
4 changed files with 163 additions and 16 deletions
+13
View File
@@ -0,0 +1,13 @@
cmake_minimum_required(VERSION 3.16)
project(libvec LANGUAGES C)
set(CMAKE_C_STANDARD 23)
set(CMAKE_C_STANDARD_REQUIRED ON)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
include_directories(include)
set(SOURCES
src/main.c
src/char.c
)
add_executable(libvec ${SOURCES})