You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
516 B
18 lines
516 B
2 years ago
|
################################################################################
|
||
|
|
||
|
# Main test
|
||
|
add_executable(test_mma main.cpp)
|
||
|
target_link_libraries(test_mma PRIVATE mma::mma)
|
||
|
|
||
|
# Triangle test
|
||
|
add_executable(test_triangle triangle.cpp)
|
||
|
target_link_libraries(test_triangle PRIVATE mma::mma)
|
||
|
|
||
|
# Pairwise test
|
||
|
add_executable(test_pairwise pairwise.cpp)
|
||
|
target_link_libraries(test_pairwise PRIVATE mma::mma)
|
||
|
|
||
|
# GCMMA test
|
||
|
add_executable(test_gcmma toy.cpp)
|
||
|
target_link_libraries(test_gcmma PRIVATE mma::mma mma::gcmma)
|