12345678910111213141516171819202122232425262728293031323334 |
- #include "cmDependsJava.h"
- #include "cmSystemTools.h"
- cmDependsJava::cmDependsJava()
- {
- }
- cmDependsJava::~cmDependsJava()
- {
- }
- bool cmDependsJava::WriteDependencies(const std::set<std::string>& sources,
- const std::string& ,
- std::ostream& ,
- std::ostream& )
- {
-
- if (sources.empty() || sources.begin()->empty()) {
- cmSystemTools::Error("Cannot scan dependencies without an source file.");
- return false;
- }
- return true;
- }
- bool cmDependsJava::CheckDependencies(
- std::istream& , const char* ,
- std::map<std::string, DependencyVector>& )
- {
- return true;
- }
|