Summary:
It turns out CMake errors out if a processed directory contains source
files that are not used. This was causing an error with the CUDATest.cpp
file when configuring StreamExecutor with the CUDA platform disabled.
Moving CUDATest.cpp to its own directory fixes this problem.
Reviewers: jlebar, jprice
Subscribers: beanz, mgorny, jlebar, parallel_libs-commits
Differential Revision: https://reviews.llvm.org/D24618
llvm-svn: 281654
if(STREAM_EXECUTOR_ENABLE_CUDA_PLATFORM)
- set(CUDA_TEST_SOURCES CUDATest.cpp)
+ set(CUDA_TEST_SOURCES cuda/CUDATest.cpp)
endif()
add_se_unittest(