9 lines
238 B
CMake
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) |