doesn't work anymore, keeping code as an example
| 10 | |
| 11 | // doesn't work anymore, keeping code as an example |
| 12 | void DebugCopyResourceFiles() |
| 13 | { |
| 14 | #ifdef PLATFORM_Win |
| 15 | if (IsDebuggerPresent()) |
| 16 | { |
| 17 | LOG(execConsoleCommand(FileUtil::GetAbsolutePath("..\\..\\..\\build\\copyResources_windows.bat") |
| 18 | + std::string(" ") + FileUtil::GetAbsolutePath("..\\..\\..\\source") |
| 19 | + std::string(" ") + FileUtil::GetExecutableDir() |
| 20 | + std::string(" x32"))); |
| 21 | } |
| 22 | #endif |
| 23 | } |
| 24 | |
| 25 | |
| 26 | } // namespace core |
nothing calls this directly
no test coverage detected