Files
j3ml/tests/CMakeLists.txt
josh 4d9a9d3a95
Some checks failed
Build Docs With Doxygen / Explore-Gitea-Actions (push) Waiting to run
Run tests / Explore-Gitea-Actions (push) Has been cancelled
Migrate from google-test to jtest.
2024-06-26 11:43:29 -04:00

9 lines
238 B
CMake

cmake_minimum_required(VERSION 3.18)
file(GLOB_RECURSE TEST_FILES "*.hpp")
add_executable(J3MLTestSuite tests.cpp)
target_include_directories(J3MLTestSuite PUBLIC "include" $TEST_FILES)
target_link_libraries(J3MLTestSuite PUBLIC J3ML)