16 lines
314 B
CMake
16 lines
314 B
CMake
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
|
|
) |