summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2002-12-31 17:41:12 (GMT)
committerBrad King <brad.king@kitware.com>2002-12-31 17:41:12 (GMT)
commitb290e5282c8b857318380ea91e210d50775627d8 (patch)
treecd6116c25f4ed13dfac753b388493079dd5112a1 /Source
parentbf6730b03a5ba5cc2f17dab2a83807f8c09bce1c (diff)
downloadCMake-b290e5282c8b857318380ea91e210d50775627d8.zip
CMake-b290e5282c8b857318380ea91e210d50775627d8.tar.gz
CMake-b290e5282c8b857318380ea91e210d50775627d8.tar.bz2
ENH: Support LINK_FLAGS property for static libraries.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalUnixMakefileGenerator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx
index 3cadaa4..2fb7a27 100644
--- a/Source/cmLocalUnixMakefileGenerator.cxx
+++ b/Source/cmLocalUnixMakefileGenerator.cxx
@@ -1004,7 +1004,8 @@ void cmLocalUnixMakefileGenerator::OutputStaticLibraryRule(std::ostream& fout,
targetPrefix,
targetSuffix,
createRule,
- "static library", 0);
+ "static library",
+ t.GetProperty("LINK_FLAGS"));
}