feat: add linux code style formatting
All checks were successful
CI / build (pull_request) Successful in 13s
CI / build (push) Successful in 13s

This commit was merged in pull request #5.
This commit is contained in:
2026-03-14 16:38:25 +01:00
parent 2885daf577
commit 79997dbce2
8 changed files with 834 additions and 25 deletions

View File

@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10)
project(curtle VERSION 0.1.1 LANGUAGES C)
add_library(curtle
src/linear_algebra.c
src/vector.c
)
target_include_directories(curtle
@@ -21,7 +21,7 @@ install(DIRECTORY include/ DESTINATION include)
enable_testing()
add_executable(test_linear_algebra tests/test_linear_algebra.c)
target_link_libraries(test_linear_algebra curtle)
add_executable(test_vector tests/test_vector.c)
target_link_libraries(test_vector curtle)
add_test(NAME linear_algebra_test COMMAND test_linear_algebra)
add_test(NAME vector_test COMMAND test_vector)