mirror of
https://github.com/reactos/CMake.git
synced 2024-11-30 23:10:26 +00:00
87341d8328
In `cmDepends` use `typedef std::map<std::string, std::vector<std::string>> DependencyMap` instead of defining a `class DependencyVector : public std::vector<std::string>` and using it in `std::map<std::string, DependencyVector>`. Since `std::map<std::string, std::vector<std::string>>` is used in various other places, we now reuse all of it's auto generated methods. This doesn't happen when we use `DependencyVector` in a `std::map`, because it is a different class than `std::vector<std::string>`.
31 lines
968 B
C++
31 lines
968 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#include "cmDependsJava.h"
|
|
|
|
#include "cmSystemTools.h"
|
|
|
|
cmDependsJava::cmDependsJava() = default;
|
|
|
|
cmDependsJava::~cmDependsJava() = default;
|
|
|
|
bool cmDependsJava::WriteDependencies(const std::set<std::string>& sources,
|
|
const std::string& /*obj*/,
|
|
std::ostream& /*makeDepends*/,
|
|
std::ostream& /*internalDepends*/)
|
|
{
|
|
// Make sure this is a scanning instance.
|
|
if (sources.empty() || sources.begin()->empty()) {
|
|
cmSystemTools::Error("Cannot scan dependencies without an source file.");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool cmDependsJava::CheckDependencies(
|
|
std::istream& /*internalDepends*/,
|
|
const std::string& /*internalDependsFileName*/, DependencyMap& /*validDeps*/)
|
|
{
|
|
return true;
|
|
}
|