2022-02-11 10:56:47 +01:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(Tests)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
|
|
|
|
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 10:56:47 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(Tests Eule)
|