diff options
author | Brad King <brad.king@kitware.com> | 2001-08-14 21:18:52 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-08-14 21:18:52 (GMT) |
commit | 3d86ad7237b525f96fe56ebc5767926546daf591 (patch) | |
tree | 2c313c430c1c200b41d5918f3faf382b5ed2f62e /Source/cmMakefile.cxx | |
parent | 7d2410097ef261013549a0b023b1588fe28043ee (diff) | |
download | CMake-3d86ad7237b525f96fe56ebc5767926546daf591.zip CMake-3d86ad7237b525f96fe56ebc5767926546daf591.tar.gz CMake-3d86ad7237b525f96fe56ebc5767926546daf591.tar.bz2 |
ENH: Improved INSTALL_FILES and INSTALL_PROGRAMS commands to allow each call to the command in a single directory to specify a different install path.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 804498e..9a482bd 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -122,13 +122,6 @@ void cmMakefile::AddDefaultCommands() #if defined(__APPLE__) this->AddDefinition("APPLE", "1"); #endif - // always creat an empty install targets for files and programs. - cmTarget target; - target.SetInAll(false); - target.SetType(cmTarget::INSTALL_FILES); - m_Targets.insert(cmTargets::value_type("INSTALL_FILES", target)); - target.SetType(cmTarget::INSTALL_PROGRAMS); - m_Targets.insert(cmTargets::value_type("INSTALL_PROGRAMS", target)); } cmMakefile::~cmMakefile() |