From: John Rockefeller Date: Thu, 7 Sep 2017 03:18:42 +0000 (-0400) Subject: Replace backslash in file paths to slash X-Git-Tag: v2.1.3-R3~29^2 X-Git-Url: http://git.hcoop.net/clinton/Virtual-Jaguar-Rx.git/commitdiff_plain/f1d6bfaf9792c341e9a4023fc43fe25ee3387057?hp=b497beb696c2835996a0d846e0db83b030f0f4f8 Replace backslash in file paths to slash This fix makes it possible to cross-compile the software on multiple OSs. Windows should also be able to handle this change just fine. --- diff --git a/src/file.cpp b/src/file.cpp index 412599f..56de1c2 100644 --- a/src/file.cpp +++ b/src/file.cpp @@ -22,7 +22,7 @@ #include "file.h" #if defined(_MSC_VER) -#include "_MSC_VER\config.h" +#include "_MSC_VER/config.h" #endif // _MSC_VER #include #include @@ -35,11 +35,11 @@ #include "universalhdr.h" #include "unzip.h" #include "zlib.h" -#include "libelf\libelf.h" -#include "libelf\gelf.h" +#include "libelf/libelf.h" +#include "libelf/gelf.h" #include "libdwarf.h" -#include "Debugger\ELFManager.h" -#include "debugger\DBGManager.h" +#include "Debugger/ELFManager.h" +#include "debugger/DBGManager.h" // Private function prototypes