Only build C++ tests in CMake

This commit is contained in:
Olli Saarikivi
2023-05-04 00:55:35 +00:00
parent bd2121a2ef
commit d7103602ac

View File

@@ -1,8 +1,8 @@
add_executable(bootstrap_test bootstrap_test.cc)
target_link_libraries(bootstrap_test mscclpp MPI::MPI_CXX)
add_executable(bootstrap_test_cpp bootstrap_test_cpp.cc)
target_link_libraries(bootstrap_test_cpp mscclpp MPI::MPI_CXX)
add_executable(communicator_test_cpp communicator_test_cpp.cu)
target_link_libraries(communicator_test_cpp mscclpp MPI::MPI_CXX)
add_executable(allgather_test_cpp allgather_test_cpp.cu)
target_link_libraries(allgather_test_cpp mscclpp MPI::MPI_CXX)
add_executable(allgather_test_standalone allgather_test_standalone.cu)
target_link_libraries(allgather_test_standalone mscclpp MPI::MPI_CXX)