diff options
author | Brad King <brad.king@kitware.com> | 2006-08-29 14:03:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-29 14:03:47 (GMT) |
commit | eef327b944a590373faa8df4eca7dbf0387c6f5c (patch) | |
tree | 736c79794fbc57142854c6855bcb6da92b4bd281 /Source/cmGlobalGenerator.h | |
parent | 8a761b8f96942fe586bb932fbe840a4679a35705 (diff) | |
download | CMake-eef327b944a590373faa8df4eca7dbf0387c6f5c.zip CMake-eef327b944a590373faa8df4eca7dbf0387c6f5c.tar.gz CMake-eef327b944a590373faa8df4eca7dbf0387c6f5c.tar.bz2 |
ENH: Adding install/local global target for Makefile generators. This runs installation only in the current directory and not subdirectories.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 07ee8d8..b4ef86f 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -186,6 +186,7 @@ public: virtual const char* GetAllTargetName() { return "ALL_BUILD"; } virtual const char* GetInstallTargetName() { return "INSTALL"; } + virtual const char* GetInstallLocalTargetName() { return 0; } virtual const char* GetPreinstallTargetName() { return 0; } virtual const char* GetTestTargetName() { return "RUN_TESTS"; } virtual const char* GetPackageTargetName() { return "PACKAGE"; } |