Files
fennec/test/CMakeLists.txt
Medusa Slockbower 5e0dc78210 - Fixed some more compilation issues
- Added some more information to the licensing section of README.md
2025-07-10 08:48:00 -04:00

33 lines
933 B
CMake

cmake_minimum_required(VERSION 3.30)
project(fennec-test)
set(CMAKE_CXX_STANDARD 26)
set(CMAKE_C_STANDARD 26)
add_executable(fennec-test main.cpp
test.h
tests/math/test_vector.h
tests/math/test_matrix.h
tests/math/test_scalar.h
tests/math/test_geometric.h
tests/test_memory.h
tests/test_math.h
tests/test_lang.h
tests/lang/test_conditional_types.h
tests/lang/test_bits.h
tests/lang/test_sequences.h
tests/math/test_common.h
tests/math/test_exponential.h
tests/math/test_relational.h
tests/math/test_trigonometric.h
tests/fproc/test_strings.h
tests/fproc/strings/test_cstring.h
tests/test_fproc.h
tests/fproc/test_io.h
)
target_compile_definitions(fennec-test PUBLIC FENNEC_TEST_CWD="${CMAKE_RUNTIME_OUTPUT_DIRECTORY}")
target_link_libraries(fennec-test PRIVATE
fennec
)