Files
libvec/CMakeLists.txt
Andrew Haynes 261e672237 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
2026-05-31 21:15:58 -04:00

14 lines
279 B
CMake

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})