| 2889 | } |
| 2890 | |
| 2891 | void cmake::PreLoadCMakeFiles() |
| 2892 | { |
| 2893 | std::vector<std::string> args; |
| 2894 | std::string pre_load = this->GetHomeDirectory(); |
| 2895 | if (!pre_load.empty()) { |
| 2896 | pre_load += "/PreLoad.cmake"; |
| 2897 | if (cmSystemTools::FileExists(pre_load)) { |
| 2898 | this->ReadListFile(args, pre_load); |
| 2899 | } |
| 2900 | } |
| 2901 | pre_load = this->GetHomeOutputDirectory(); |
| 2902 | if (!pre_load.empty()) { |
| 2903 | pre_load += "/PreLoad.cmake"; |
| 2904 | if (cmSystemTools::FileExists(pre_load)) { |
| 2905 | this->ReadListFile(args, pre_load); |
| 2906 | } |
| 2907 | } |
| 2908 | } |
| 2909 | |
| 2910 | #ifdef CMake_ENABLE_DEBUGGER |
| 2911 |
no test coverage detected