summaryrefslogtreecommitdiff
path: root/Source/cmMakefileExecutableTargetGenerator.h
diff options
context:
space:
mode:
authorRobert Maynard <robert.maynard@kitware.com>2016-10-21 14:17:42 -0400
committerBrad King <brad.king@kitware.com>2016-11-14 16:40:49 -0500
commitd038559e49b0d0dd65124370f48a92ba3de9006c (patch)
tree690627ae383a74ab82be197a83068a51ab7dc8cf /Source/cmMakefileExecutableTargetGenerator.h
parent43ce4414c479af6b04e93decaf7f69938c92a323 (diff)
downloadcmake-d038559e49b0d0dd65124370f48a92ba3de9006c.tar.gz
CUDA: Add separable compilation support to the makefile generator.
Diffstat (limited to 'Source/cmMakefileExecutableTargetGenerator.h')
-rw-r--r--Source/cmMakefileExecutableTargetGenerator.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmMakefileExecutableTargetGenerator.h b/Source/cmMakefileExecutableTargetGenerator.h
index 36cfe403a1..642182b675 100644
--- a/Source/cmMakefileExecutableTargetGenerator.h
+++ b/Source/cmMakefileExecutableTargetGenerator.h
@@ -21,6 +21,10 @@ public:
protected:
virtual void WriteExecutableRule(bool relink);
+ virtual void WriteDeviceExecutableRule(bool relink);
+
+private:
+ std::string DeviceLinkObject;
};
#endif