diff --git a/CMakeLists.txt b/CMakeLists.txt index 1e22365515..539a1eae2b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,7 +51,6 @@ endif() set(ROCM_USE_DEV_COMPONENT OFF) # This repo doesn't have a dev component # Add all of the tests -add_subdirectory(verifiable) add_subdirectory(src) # Create ROCm standard packages diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b5a40aefc1..6511a419c9 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -3,8 +3,8 @@ # ######################################################################## # Compile common object library -set_property(SOURCE common.cu PROPERTY LANGUAGE CXX) -add_library(rccl_common OBJECT common.cu) +set_property(SOURCE common.cu timer.cc ../verifiable/verifiable.cu PROPERTY LANGUAGE CXX) +add_library(rccl_common OBJECT common.cu timer.cc ../verifiable/verifiable.cu) if(USE_MPI) target_link_libraries(rccl_common roc::rccl MPI::MPI_CXX) else()