BUG: Don't generate build rules for header files.
This commit is contained in:
parent
1859209282
commit
a9cdcba660
@ -178,7 +178,11 @@ OutputBuildObjectFromSource(std::ostream& fout,
|
|||||||
const cmSourceFile& source,
|
const cmSourceFile& source,
|
||||||
const char* extraCompileFlags,
|
const char* extraCompileFlags,
|
||||||
bool shared)
|
bool shared)
|
||||||
{
|
{
|
||||||
|
// Header files shouldn't have build rules.
|
||||||
|
if(source.IsAHeaderFileOnly())
|
||||||
|
return;
|
||||||
|
|
||||||
std::string comment = "Build ";
|
std::string comment = "Build ";
|
||||||
std::string objectFile = std::string(shortName) +
|
std::string objectFile = std::string(shortName) +
|
||||||
this->GetOutputExtension(source.GetSourceExtension().c_str());
|
this->GetOutputExtension(source.GetSourceExtension().c_str());
|
||||||
|
@ -356,6 +356,10 @@ OutputBuildObjectFromSource(std::ostream& fout,
|
|||||||
const char* extraCompileFlags,
|
const char* extraCompileFlags,
|
||||||
bool shared)
|
bool shared)
|
||||||
{
|
{
|
||||||
|
// Header files shouldn't have build rules.
|
||||||
|
if(source.IsAHeaderFileOnly())
|
||||||
|
return;
|
||||||
|
|
||||||
std::string comment = "Build ";
|
std::string comment = "Build ";
|
||||||
std::string objectFile = std::string(shortName) +
|
std::string objectFile = std::string(shortName) +
|
||||||
this->GetOutputExtension(source.GetSourceExtension().c_str());
|
this->GetOutputExtension(source.GetSourceExtension().c_str());
|
||||||
|
@ -1594,7 +1594,10 @@ OutputBuildObjectFromSource(std::ostream& fout,
|
|||||||
const char* extraCompileFlags,
|
const char* extraCompileFlags,
|
||||||
bool shared)
|
bool shared)
|
||||||
{
|
{
|
||||||
|
// Header files shouldn't have build rules.
|
||||||
|
if(source.IsAHeaderFileOnly())
|
||||||
|
return;
|
||||||
|
|
||||||
std::string comment = "Build ";
|
std::string comment = "Build ";
|
||||||
std::string objectFile = std::string(shortName) + m_ObjectFileExtension;
|
std::string objectFile = std::string(shortName) + m_ObjectFileExtension;
|
||||||
comment += objectFile + " From ";
|
comment += objectFile + " From ";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user