mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-10-29 22:45:34 +01:00
18 lines
288 B
CMake
18 lines
288 B
CMake
add_executable(std_utils_test
|
|
scalar_range2_test.cpp
|
|
scalar_range2_json_test.cpp
|
|
)
|
|
|
|
target_include_directories(std_utils_test PRIVATE ".")
|
|
|
|
target_link_libraries(std_utils_test
|
|
gtest_main
|
|
gmock
|
|
|
|
std_utils
|
|
std_utils_serialize
|
|
)
|
|
|
|
add_test(NAME std_utils_test COMMAND std_utils_test)
|
|
|