BUILD: Move list of engines out of configure

The new file engines/configure.engines is currently manually created
and maintained, but could be regenerated by a script in the future.
This commit is contained in:
Max Horn 2012-04-18 11:36:56 +02:00
parent 5185c61a2e
commit c638730fbc
4 changed files with 51 additions and 48 deletions

View file

@ -693,7 +693,7 @@ bool parseEngine(const std::string &line, EngineDesc &engine);
} // End of anonymous namespace
EngineDescList parseConfigure(const std::string &srcDir) {
std::string configureFile = srcDir + "/configure";
std::string configureFile = srcDir + "/engines/configure.engines";
std::ifstream configure(configureFile.c_str());
if (!configure)