summaryrefslogtreecommitdiff
path: root/Source/cmGlobalUnixMakefileGenerator3.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-02-23 13:37:35 -0500
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-02-23 13:37:35 -0500
commit549b77034e4a927a5f5775b0d6d2ef8026b14de0 (patch)
tree79068987e9f214e880a81017422a5aec9e2d5319 /Source/cmGlobalUnixMakefileGenerator3.h
parent3d617b48aafbef2cbfa078a52fa8ffbceae14286 (diff)
downloadcmake-549b77034e4a927a5f5775b0d6d2ef8026b14de0.tar.gz
COMP: Fixes for visual studio
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.h')
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.h b/Source/cmGlobalUnixMakefileGenerator3.h
index d2e9d0f671..e9e579b4da 100644
--- a/Source/cmGlobalUnixMakefileGenerator3.h
+++ b/Source/cmGlobalUnixMakefileGenerator3.h
@@ -119,6 +119,15 @@ protected:
// does this generator need a requires step for any of its targets
bool NeedRequiresStep(cmLocalUnixMakefileGenerator3 *lg, const char *);
+ // Setup target names
+ 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"; }
+
+
// Some make programs (Borland) do not keep a rule if there are no
// dependencies or commands. This is a problem for creating rules
// that might not do anything but might have other dependencies