option(CONCRETE_CUDA_BUILD_TESTS "Build the test tool" ON)
option(CONCRETE_CUDA_BUILD_BENCHMARKS "Build the benchmark tool" ON)

if(CONCRETE_CUDA_BUILD_TESTS)
  message(STATUS "Building with Concrete CUDA test tool")
  add_subdirectory(test)
endif()
if(CONCRETE_CUDA_BUILD_BENCHMARKS)
  message(STATUS "Building with Concrete CUDA benchmark tool")
  add_subdirectory(benchmark)
endif()
