Eule/Test/CMakeLists.txt

35 lines
744 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.16)
project(Tests)
set(CMAKE_CXX_STANDARD 17)
2022-02-11 13:06:43 +01:00
add_compile_definitions(_EULE_NO_INTRINSICS_)
include_directories(..)
link_directories(../Eule/cmake-build-debug)
add_executable(Tests
Catch2.h
main.cpp
Math__Mod.cpp
2022-02-11 11:13:56 +01:00
Math__Oscillate.cpp
Math__Abs.cpp
2022-02-11 11:19:25 +01:00
Math__Clamp.cpp
2022-02-11 11:22:23 +01:00
Math__Lerp.cpp
2022-02-11 11:24:55 +01:00
Math__Max.cpp
2022-02-11 11:26:53 +01:00
Math__Min.cpp
2022-02-11 11:29:38 +01:00
Math__Similar.cpp
2022-02-11 13:06:43 +01:00
Matrix4x4.cpp
2022-02-11 14:16:40 +01:00
Vector2.cpp
2022-02-11 13:40:22 +01:00
Vector3.cpp
2022-02-11 14:28:51 +01:00
Vector4.cpp
VectorConversion.cpp
2022-02-11 14:47:33 +01:00
Quaternion.cpp
Random__RandomFloat.cpp
Random__RandomInteger.cpp
Random__RandomRange.cpp
Random_RandomIntRange.cpp
)
target_link_libraries(Tests Eule)