mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 04:40:18 -05:00
ENH: Fixed INSTALL_FILES and INSTALL_PROGRAMS commands to not create targets. No targets of type cmTarget::INSTALL_FILES or cmTarget::INSTALL_PROGRAMS are created, so we do not need to check for them everywhere anymore.
This commit is contained in:
@@ -256,9 +256,6 @@ void cmGlobalVisualStudio6Generator
|
||||
}
|
||||
else
|
||||
{
|
||||
if ((l->second.GetType() != cmTarget::INSTALL_FILES)
|
||||
&& (l->second.GetType() != cmTarget::INSTALL_PROGRAMS))
|
||||
{
|
||||
bool skip = false;
|
||||
// skip ALL_BUILD and RUN_TESTS if they have already been added
|
||||
if(l->first == "ALL_BUILD" )
|
||||
@@ -332,7 +329,6 @@ void cmGlobalVisualStudio6Generator
|
||||
this->WriteProject(fout, si->c_str(), dir.c_str(),l->second);
|
||||
}
|
||||
++si;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user