CUDA: Explicitly state all source files are cuda sources.

This way you can mark a .C/.CPP files as a cuda source file and
have nvcc build it as a cuda file.
This commit is contained in:
Robert Maynard
2016-08-30 12:00:44 -04:00
parent ce4ec876ce
commit bf326ebb76

View File

@@ -89,7 +89,7 @@ endif()
# compile a cu file into an object file
if(NOT CMAKE_CUDA_COMPILE_OBJECT)
set(CMAKE_CUDA_COMPILE_OBJECT
"<CMAKE_CUDA_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -o <OBJECT> -c <SOURCE>")
"<CMAKE_CUDA_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -o <OBJECT> -x cu -c <SOURCE>")
endif()
# compile a cu file into an executable