summaryrefslogtreecommitdiff
path: root/Source/cmLocalVisualStudio7Generator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-01-13 18:18:32 -0500
committerBrad King <brad.king@kitware.com>2006-01-13 18:18:32 -0500
commit22c62c9e65817e25b077f88222c682efa0188ccb (patch)
tree077abb80fc469c06f08cc4509ff72bcbee8384c7 /Source/cmLocalVisualStudio7Generator.h
parent262295615925c082ec3f98c3fc1f6c259d09ee6f (diff)
downloadcmake-22c62c9e65817e25b077f88222c682efa0188ccb.tar.gz
BUG: Sweeping changes to cleanup computation of target names. This should
fix many bugs related to target names being computed inconsistently. - Centralized computation of a target's file name to a method in cmTarget. Now that global knowledge is always available the *_CMAKE_PATH cache variables are no longer needed. - Centralized computation of link library command lines and link directory search order. - Moved computation of link directories needed to link CMake targets to be after evaluation of linking dependencies. This also removed alot of duplicate code in which each version had its own bugs. This commit is surrounded by the tags CMake-TargetNameCentralization1-pre and CMake-TargetNameCentralization1-post so make the large set of changes easy to identify.
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.h')
-rw-r--r--Source/cmLocalVisualStudio7Generator.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.h b/Source/cmLocalVisualStudio7Generator.h
index 1e20619c78..36dafa676e 100644
--- a/Source/cmLocalVisualStudio7Generator.h
+++ b/Source/cmLocalVisualStudio7Generator.h
@@ -90,12 +90,9 @@ private:
void OutputBuildTool(std::ostream& fout, const char* configName,
const char* libname, cmTarget& t);
void OutputLibraries(std::ostream& fout,
- const char* configName,
- const char* libName,
- cmTarget &target);
+ std::vector<cmStdString> const& libs);
void OutputLibraryDirectories(std::ostream& fout,
- const char* configName,
- const char* libName, cmTarget &target);
+ std::vector<cmStdString> const& dirs);
void OutputModuleDefinitionFile(std::ostream& fout, cmTarget &target);
void WriteProjectStart(std::ostream& fout, const char *libName,
cmTarget &tgt, std::vector<cmSourceGroup> &sgs);