Files
Raychel/test/CMakeLists.txt
Weckyy702 e7fe9370d3 Hello, World!
Yeah this is quite a thicc first commit but there's no way I'm
untangling this mess just for a nice set of starting commits :^)
2022-12-19 22:41:02 +01:00

24 lines
456 B
CMake

if(NOT RAYCHEL_LOGGER_EXTERNAL)
find_package(RaychelLogger REQUIRED)
endif()
if(NOT RAYCHEL_CORE_EXTERNAL)
find_package(RaychelCore REQUIRED)
endif()
if(NOT RAYCHEL_MATH_EXTERNAL)
find_package(RaychelMath REQUIRED)
endif()
file(GLOB RAYCHEL_TEST_SOURCES "*.test.cpp")
add_executable(Raychel_test
${RAYCHEL_TEST_SOURCES}
)
target_compile_features(Raychel_test PUBLIC cxx_std_20)
target_link_libraries(Raychel_test PUBLIC
Raychel
)