diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-08-01 13:13:43 -0400 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-08-01 13:13:43 -0400 |
commit | 63ca58ceafa459ec769d7c969852ab1f6fb30f7c (patch) | |
tree | c1ddc14f5aa14a4ec909466fa1f1db092fe40198 /Source/cmGlobalNMakeMakefileGenerator.cxx | |
parent | 46acf162f5c42e5f2d1e9f65a128a3cdc9662cd2 (diff) | |
download | cmake-63ca58ceafa459ec769d7c969852ab1f6fb30f7c.tar.gz |
ENH: allow lib prefix for to stay for nmake and borland make as it is not a system prefix
Diffstat (limited to 'Source/cmGlobalNMakeMakefileGenerator.cxx')
-rw-r--r-- | Source/cmGlobalNMakeMakefileGenerator.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalNMakeMakefileGenerator.cxx b/Source/cmGlobalNMakeMakefileGenerator.cxx index a1db99fc3d..08b48c88bc 100644 --- a/Source/cmGlobalNMakeMakefileGenerator.cxx +++ b/Source/cmGlobalNMakeMakefileGenerator.cxx @@ -40,6 +40,7 @@ cmLocalGenerator *cmGlobalNMakeMakefileGenerator::CreateLocalGenerator() lg->SetWindowsShell(true); lg->SetMakeSilentFlag("/nologo"); lg->SetGlobalGenerator(this); + lg->SetIgnoreLibPrefix(true); return lg; } |