diff options
author | Robert Maynard <robert.maynard@kitware.com> | 2016-10-21 14:17:42 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-11-14 16:40:49 -0500 |
commit | d038559e49b0d0dd65124370f48a92ba3de9006c (patch) | |
tree | 690627ae383a74ab82be197a83068a51ab7dc8cf /Source/cmMakefileLibraryTargetGenerator.h | |
parent | 43ce4414c479af6b04e93decaf7f69938c92a323 (diff) | |
download | cmake-d038559e49b0d0dd65124370f48a92ba3de9006c.tar.gz |
CUDA: Add separable compilation support to the makefile generator.
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.h')
-rw-r--r-- | Source/cmMakefileLibraryTargetGenerator.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.h b/Source/cmMakefileLibraryTargetGenerator.h index dda41b87b8..93ce902109 100644 --- a/Source/cmMakefileLibraryTargetGenerator.h +++ b/Source/cmMakefileLibraryTargetGenerator.h @@ -26,6 +26,9 @@ protected: void WriteStaticLibraryRules(); void WriteSharedLibraryRules(bool relink); void WriteModuleLibraryRules(bool relink); + + void WriteDeviceLibraryRules(const std::string& linkRule, + const std::string& extraFlags, bool relink); void WriteLibraryRules(const std::string& linkRule, const std::string& extraFlags, bool relink); // MacOSX Framework support methods @@ -33,6 +36,9 @@ protected: // Store the computd framework version for OS X Frameworks. std::string FrameworkVersion; + +private: + std::string DeviceLinkObject; }; #endif |