diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-23 18:37:35 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-23 18:37:35 (GMT) |
commit | 549b77034e4a927a5f5775b0d6d2ef8026b14de0 (patch) | |
tree | 79068987e9f214e880a81017422a5aec9e2d5319 /Source/cmGlobalGenerator.h | |
parent | 3d617b48aafbef2cbfa078a52fa8ffbceae14286 (diff) | |
download | CMake-549b77034e4a927a5f5775b0d6d2ef8026b14de0.zip CMake-549b77034e4a927a5f5775b0d6d2ef8026b14de0.tar.gz CMake-549b77034e4a927a5f5775b0d6d2ef8026b14de0.tar.bz2 |
COMP: Fixes for visual studio
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 12a0163..df7b6ab 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -168,12 +168,12 @@ protected: const cmCustomCommandLines* commandLines, std::vector<std::string> depends, bool depends_on_all = false); - virtual const char* GetInstallTargetName() { return "install"; } - virtual const char* GetPreinstallTargetName() { return "preinstall"; } - virtual const char* GetTestTargetName() { return "test"; } - virtual const char* GetPackageTargetName() { return "package"; } - virtual const char* GetEditCacheTargetName() { return "edit_cache"; } - virtual const char* GetRebuildCacheTargetName() { return "rebuild_cache"; } + virtual const char* GetInstallTargetName() { return "INSTALL"; } + virtual const char* GetPreinstallTargetName() { return "PREINSTALL"; } + virtual const char* GetTestTargetName() { return "RUN_TESTS"; } + virtual const char* GetPackageTargetName() { return "PACKAGE"; } + virtual const char* GetEditCacheTargetName() { return "EDIT_CACHE"; } + virtual const char* GetRebuildCacheTargetName() { return "REBUILD_CACHE"; } bool m_ForceUnixPaths; cmStdString m_FindMakeProgramFile; |