BUG: INCLUDE_DIRECTORIES should interpret relative path arguments with respect to the current source directory.
This commit is contained in:
parent
01c25dd378
commit
21089bf93f
|
@ -49,6 +49,13 @@ bool cmIncludeDirectoryCommand
|
||||||
}
|
}
|
||||||
std::string unixPath = *i;
|
std::string unixPath = *i;
|
||||||
cmSystemTools::ConvertToUnixSlashes(unixPath);
|
cmSystemTools::ConvertToUnixSlashes(unixPath);
|
||||||
|
if(!cmSystemTools::FileIsFullPath(unixPath.c_str()))
|
||||||
|
{
|
||||||
|
std::string tmp = this->Makefile->GetStartDirectory();
|
||||||
|
tmp += "/";
|
||||||
|
tmp += unixPath;
|
||||||
|
unixPath = tmp;
|
||||||
|
}
|
||||||
this->Makefile->AddIncludeDirectory(unixPath.c_str(), before);
|
this->Makefile->AddIncludeDirectory(unixPath.c_str(), before);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -92,7 +92,7 @@ ENDIF(${fooCACHE_TEST_VAR2} MATCHES bar)
|
||||||
# (BEFORE is for coverage)
|
# (BEFORE is for coverage)
|
||||||
#
|
#
|
||||||
INCLUDE_DIRECTORIES(
|
INCLUDE_DIRECTORIES(
|
||||||
${Complex_SOURCE_DIR}/Library
|
Library
|
||||||
${Complex_SOURCE_DIR}/../../Source
|
${Complex_SOURCE_DIR}/../../Source
|
||||||
${Complex_BINARY_DIR}/../../Source
|
${Complex_BINARY_DIR}/../../Source
|
||||||
)
|
)
|
||||||
|
|
|
@ -92,7 +92,7 @@ ENDIF(${fooCACHE_TEST_VAR2} MATCHES bar)
|
||||||
# (BEFORE is for coverage)
|
# (BEFORE is for coverage)
|
||||||
#
|
#
|
||||||
INCLUDE_DIRECTORIES(
|
INCLUDE_DIRECTORIES(
|
||||||
${Complex_SOURCE_DIR}/Library
|
Library
|
||||||
${Complex_SOURCE_DIR}/../../Source
|
${Complex_SOURCE_DIR}/../../Source
|
||||||
${Complex_BINARY_DIR}/../../Source
|
${Complex_BINARY_DIR}/../../Source
|
||||||
)
|
)
|
||||||
|
|
|
@ -92,7 +92,7 @@ ENDIF(${fooCACHE_TEST_VAR2} MATCHES bar)
|
||||||
# (BEFORE is for coverage)
|
# (BEFORE is for coverage)
|
||||||
#
|
#
|
||||||
INCLUDE_DIRECTORIES(
|
INCLUDE_DIRECTORIES(
|
||||||
${Complex_SOURCE_DIR}/Library
|
Library
|
||||||
${Complex_SOURCE_DIR}/../../Source
|
${Complex_SOURCE_DIR}/../../Source
|
||||||
${Complex_BINARY_DIR}/../../Source
|
${Complex_BINARY_DIR}/../../Source
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue