Disallow INTERFACE libraries with add_custom_command(TARGET).

Don't attempt to trace their dependencies.
This commit is contained in:
Stephen Kelly 2014-03-19 15:50:01 +01:00
parent 0f4e8fd0e9
commit 2600e923a6
6 changed files with 23 additions and 1 deletions

View File

@ -263,7 +263,8 @@ void cmLocalGenerator::TraceDependencies()
for(cmGeneratorTargetsType::iterator t = targets.begin();
t != targets.end(); ++t)
{
if (t->second->Target->IsImported())
if (t->second->Target->IsImported()
|| t->second->Target->GetType() == cmTarget::INTERFACE_LIBRARY)
{
continue;
}

View File

@ -926,6 +926,14 @@ cmMakefile::AddCustomCommandToTarget(const char* target,
this->IssueMessage(cmake::FATAL_ERROR, e.str());
return;
}
if(ti->second.GetType() == cmTarget::INTERFACE_LIBRARY)
{
cmOStringStream e;
e << "Target \"" << target << "\" is an INTERFACE library "
"that may not have PRE_BUILD, PRE_LINK, or POST_BUILD commands.";
this->IssueMessage(cmake::FATAL_ERROR, e.str());
return;
}
// Add the command to the appropriate build step for the target.
std::vector<std::string> no_output;
cmCustomCommand cc(this, no_output, depends,

View File

@ -8,3 +8,4 @@ run_cmake(invalid_signature)
run_cmake(global-interface)
run_cmake(genex_link)
run_cmake(add_dependencies)
run_cmake(add_custom_command-TARGET)

View File

@ -0,0 +1,5 @@
CMake Error at add_custom_command-TARGET.cmake:4 \(add_custom_command\):
Target "iface" is an INTERFACE library that may not have PRE_BUILD,
PRE_LINK, or POST_BUILD commands.
Call Stack \(most recent call first\):
CMakeLists.txt:3 \(include\)

View File

@ -0,0 +1,6 @@
add_library(iface INTERFACE)
add_custom_command(TARGET iface
COMMAND "${CMAKE_COMMAND}" -E echo test
)