mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
cmLocalGenerator: add an override for CMakeFiles-using paths
Visual Studio doesn't use a `CMakeFiles` subdirectory for its support directories. However, some codepaths expect to use paths which are always under `CMakeFiles`. Add a mechanism to keep the path for such files.
This commit is contained in:
@@ -89,6 +89,11 @@ std::string cmLocalVisualStudioGenerator::GetObjectOutputRoot() const
|
||||
return this->GetCurrentBinaryDirectory();
|
||||
}
|
||||
|
||||
bool cmLocalVisualStudioGenerator::AlwaysUsesCMFPaths() const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
std::unique_ptr<cmCustomCommand>
|
||||
cmLocalVisualStudioGenerator::MaybeCreateImplibDir(cmGeneratorTarget* target,
|
||||
std::string const& config,
|
||||
|
||||
Reference in New Issue
Block a user