summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-01 13:28:39 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-01 13:28:39 (GMT)
commit07260a6f271e73f5c46f6accee1e629499afa5de (patch)
treedf01c41bd8d7b428ac3e0f5d40847954874fcead /Source/cmGlobalGenerator.h
parentd231a422ed888acf774ff251a640e092957ec844 (diff)
downloadCMake-07260a6f271e73f5c46f6accee1e629499afa5de.zip
CMake-07260a6f271e73f5c46f6accee1e629499afa5de.tar.gz
CMake-07260a6f271e73f5c46f6accee1e629499afa5de.tar.bz2
ENH: Cleanup global targets even more and potentially fix Xcode
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r--Source/cmGlobalGenerator.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h
index 5864738..acc5095 100644
--- a/Source/cmGlobalGenerator.h
+++ b/Source/cmGlobalGenerator.h
@@ -171,13 +171,13 @@ protected:
const cmCustomCommandLines* commandLines,
std::vector<std::string> depends, bool depends_on_all = false);
+ virtual const char* GetAllTargetName() { return "ALL_BUILD"; }
virtual const char* GetInstallTargetName() { return "INSTALL"; }
- virtual const char* GetPreinstallTargetName() { return "PREINSTALL"; }
+ virtual const char* GetPreinstallTargetName() { return 0; }
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"; }
- virtual bool GetPreInstallAvailable() { return false; }
+ virtual const char* GetEditCacheTargetName() { return 0; }
+ virtual const char* GetRebuildCacheTargetName() { return 0; }
bool m_ForceUnixPaths;
cmStdString m_FindMakeProgramFile;