Initial Commit

This commit is contained in:
2025-05-25 22:36:59 -04:00
commit a6442e1945
64 changed files with 20486 additions and 0 deletions

16
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,16 @@
cmake_minimum_required(VERSION 3.30)
project(fennec-test)
set(CMAKE_CXX_STANDARD 26)
add_executable(fennec-test main.cpp
test.h
tests/test_vector.h
tests/test_matrix.h
tests/test_scalar.h
tests/test_geometric.h
)
target_link_libraries(fennec-test PRIVATE
fennec
)