diff options
author | Brad King <brad.king@kitware.com> | 2012-03-12 14:54:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-03-13 18:38:02 (GMT) |
commit | 3aa741acb6b47d83a0892ddf027ddb0abdc33e78 (patch) | |
tree | d3416968375e99e3e99dce6611440535085b0cb7 /Source/cmMakefileLibraryTargetGenerator.h | |
parent | b87d7a60a0ed146b79c49baedb666db228d5a70f (diff) | |
download | CMake-3aa741acb6b47d83a0892ddf027ddb0abdc33e78.zip CMake-3aa741acb6b47d83a0892ddf027ddb0abdc33e78.tar.gz CMake-3aa741acb6b47d83a0892ddf027ddb0abdc33e78.tar.bz2 |
Build object library targets in Makefiles
Treat OBJECT libraries as STATIC libraries but leave out the archive
step. The object files will be left behind for reference by other
targets later.
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.h')
-rw-r--r-- | Source/cmMakefileLibraryTargetGenerator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.h b/Source/cmMakefileLibraryTargetGenerator.h index f3c47db..e6a5867 100644 --- a/Source/cmMakefileLibraryTargetGenerator.h +++ b/Source/cmMakefileLibraryTargetGenerator.h @@ -25,6 +25,7 @@ public: virtual void WriteRuleFiles(); protected: + void WriteObjectLibraryRules(); void WriteStaticLibraryRules(); void WriteSharedLibraryRules(bool relink); void WriteModuleLibraryRules(bool relink); |