Browse Source

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.
Robert Maynard 9 years ago
parent
commit
bf326ebb76
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Modules/CMakeCUDAInformation.cmake

+ 1 - 1
Modules/CMakeCUDAInformation.cmake

@@ -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