summaryrefslogtreecommitdiffstats
path: root/Source/cmNMakeMakefileGenerator.cxx
diff options
context:
space:
mode:
authorSebastien Barre <sebastien.barre@kitware.com>2002-04-22 18:29:21 (GMT)
committerSebastien Barre <sebastien.barre@kitware.com>2002-04-22 18:29:21 (GMT)
commit1ce7085e63310494c0e60073bf1e98510d0a2995 (patch)
treee63d482be65d670b2e5aa76b0e4e8187069cd7eb /Source/cmNMakeMakefileGenerator.cxx
parentd774cd7c2be90f55b6d198ab147776a4303ca703 (diff)
downloadCMake-1ce7085e63310494c0e60073bf1e98510d0a2995.zip
CMake-1ce7085e63310494c0e60073bf1e98510d0a2995.tar.gz
CMake-1ce7085e63310494c0e60073bf1e98510d0a2995.tar.bz2
ENH: need CMAKE_LINKER_FLAGS
Diffstat (limited to 'Source/cmNMakeMakefileGenerator.cxx')
-rw-r--r--Source/cmNMakeMakefileGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmNMakeMakefileGenerator.cxx b/Source/cmNMakeMakefileGenerator.cxx
index 53828f8..1097a55 100644
--- a/Source/cmNMakeMakefileGenerator.cxx
+++ b/Source/cmNMakeMakefileGenerator.cxx
@@ -529,7 +529,7 @@ void cmNMakeMakefileGenerator::OutputExecutableRule(std::ostream& fout,
command += " " + output_executable_file_flag +
this->ConvertToOutputPath(path.c_str());
- command += " $(CMAKE_C_LINK_EXECUTABLE_FLAG) ";
+ command += " $(CMAKE_C_LINK_EXECUTABLE_FLAG) $(CMAKE_LINKER_FLAGS) ";
if(t.GetType() == cmTarget::WIN32_EXECUTABLE)
{
command += " /subsystem:windows ";