diff options
author | Max Horn | 2012-04-18 11:36:56 +0200 |
---|---|---|
committer | Max Horn | 2012-04-18 15:44:11 +0200 |
commit | c638730fbcbcfff5fb86b36b5331794672944bf9 (patch) | |
tree | f0767a1b4e6a2d8981f98e70493cd91959fcd785 /devtools/create_project | |
parent | 5185c61a2e6829fa0d3c7e678310b6687defa50e (diff) | |
download | scummvm-rg350-c638730fbcbcfff5fb86b36b5331794672944bf9.tar.gz scummvm-rg350-c638730fbcbcfff5fb86b36b5331794672944bf9.tar.bz2 scummvm-rg350-c638730fbcbcfff5fb86b36b5331794672944bf9.zip |
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.
Diffstat (limited to 'devtools/create_project')
-rw-r--r-- | devtools/create_project/create_project.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/create_project/create_project.cpp b/devtools/create_project/create_project.cpp index 062c03b648..293cc0b2de 100644 --- a/devtools/create_project/create_project.cpp +++ b/devtools/create_project/create_project.cpp @@ -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) |