diff options
author | Robert Maynard <robert.maynard@kitware.com> | 2016-08-30 14:15:10 (GMT) |
---|---|---|
committer | Robert Maynard <robert.maynard@kitware.com> | 2016-11-14 16:36:43 (GMT) |
commit | ce4ec876ceb73f52055b617374c04dbbbfd2a98d (patch) | |
tree | 57b008b15d2d51fd2a189f495ce869a99ebada73 /Source/cmTarget.cxx | |
parent | f8aac21947f43a0e886a3cc3655514abb95bb260 (diff) | |
download | CMake-ce4ec876ceb73f52055b617374c04dbbbfd2a98d.zip CMake-ce4ec876ceb73f52055b617374c04dbbbfd2a98d.tar.gz CMake-ce4ec876ceb73f52055b617374c04dbbbfd2a98d.tar.bz2 |
CUDA: Add support language levels (98/11)
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 54bdfe6..48acc6e 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -267,6 +267,9 @@ cmTarget::cmTarget(std::string const& name, cmStateEnums::TargetType type, this->SetPropertyDefault("CXX_STANDARD", CM_NULLPTR); this->SetPropertyDefault("CXX_STANDARD_REQUIRED", CM_NULLPTR); this->SetPropertyDefault("CXX_EXTENSIONS", CM_NULLPTR); + this->SetPropertyDefault("CUDA_STANDARD", CM_NULLPTR); + this->SetPropertyDefault("CUDA_STANDARD_REQUIRED", CM_NULLPTR); + this->SetPropertyDefault("CUDA_EXTENSIONS", CM_NULLPTR); this->SetPropertyDefault("LINK_SEARCH_START_STATIC", CM_NULLPTR); this->SetPropertyDefault("LINK_SEARCH_END_STATIC", CM_NULLPTR); } |