summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorRobert Maynard <robert.maynard@kitware.com>2018-01-03 14:22:47 (GMT)
committerRobert Maynard <robert.maynard@kitware.com>2018-01-08 21:16:52 (GMT)
commit81868e6badbb36947a6e89b0e97f2f0526d59a67 (patch)
tree0a80366b630f15f2094c2210a3bc1a4d7062f8c1 /Source/cmake.cxx
parent1f29bc4092edf57cfb61882d7d7358db7e53ebe6 (diff)
downloadCMake-81868e6badbb36947a6e89b0e97f2f0526d59a67.zip
CMake-81868e6badbb36947a6e89b0e97f2f0526d59a67.tar.gz
CMake-81868e6badbb36947a6e89b0e97f2f0526d59a67.tar.bz2
CUDA: Add cu as default source file extension
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 2a5bb6c..2341dd6 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -196,6 +196,7 @@ cmake::cmake(Role role)
this->SourceFileExtensions.push_back("cc");
this->SourceFileExtensions.push_back("cpp");
this->SourceFileExtensions.push_back("cxx");
+ this->SourceFileExtensions.push_back("cu");
this->SourceFileExtensions.push_back("m");
this->SourceFileExtensions.push_back("M");
this->SourceFileExtensions.push_back("mm");