diff --git a/src/xenia/cpu/lzx.cc b/src/xenia/cpu/lzx.cc index cc2546d52..3c4724252 100644 --- a/src/xenia/cpu/lzx.cc +++ b/src/xenia/cpu/lzx.cc @@ -18,8 +18,8 @@ #include "xenia/base/memory.h" #include "xenia/kernel/util/xex2_info.h" -#include "third_party/mspack/lzx.h" -#include "third_party/mspack/mspack.h" +#include "third_party/mspack/include/mspack/lzx.h" +#include "third_party/mspack/include/mspack/mspack.h" typedef struct mspack_memory_file_t { mspack_system sys; diff --git a/third_party/mspack.lua b/third_party/mspack.lua index c1d1b44a5..82da85674 100644 --- a/third_party/mspack.lua +++ b/third_party/mspack.lua @@ -18,14 +18,14 @@ project("mspack") "mspack", }) files({ - "mspack/logging.cc", - "mspack/lzx.h", - "mspack/lzxd.c", - "mspack/mspack.h", - "mspack/readbits.h", - "mspack/readhuff.h", - "mspack/system.c", - "mspack/system.h", + "mspack/include/mspack/lzx.h", + "mspack/include/mspack/mspack.h", + "mspack/include/mspack/readbits.h", + "mspack/include/mspack/readhuff.h", + "mspack/include/mspack/system.h", + "mspack/mspack/logging.cc", + "mspack/mspack/lzxd.c", + "mspack/mspack/system.c", }) filter("platforms:Windows") diff --git a/third_party/mspack/lzx.h b/third_party/mspack/include/mspack/lzx.h similarity index 100% rename from third_party/mspack/lzx.h rename to third_party/mspack/include/mspack/lzx.h diff --git a/third_party/mspack/mspack.h b/third_party/mspack/include/mspack/mspack.h similarity index 100% rename from third_party/mspack/mspack.h rename to third_party/mspack/include/mspack/mspack.h diff --git a/third_party/mspack/readbits.h b/third_party/mspack/include/mspack/readbits.h similarity index 100% rename from third_party/mspack/readbits.h rename to third_party/mspack/include/mspack/readbits.h diff --git a/third_party/mspack/readhuff.h b/third_party/mspack/include/mspack/readhuff.h similarity index 100% rename from third_party/mspack/readhuff.h rename to third_party/mspack/include/mspack/readhuff.h diff --git a/third_party/mspack/system.h b/third_party/mspack/include/mspack/system.h similarity index 100% rename from third_party/mspack/system.h rename to third_party/mspack/include/mspack/system.h diff --git a/third_party/mspack/logging.cc b/third_party/mspack/mspack/logging.cc similarity index 100% rename from third_party/mspack/logging.cc rename to third_party/mspack/mspack/logging.cc diff --git a/third_party/mspack/lzxd.c b/third_party/mspack/mspack/lzxd.c similarity index 100% rename from third_party/mspack/lzxd.c rename to third_party/mspack/mspack/lzxd.c diff --git a/third_party/mspack/system.c b/third_party/mspack/mspack/system.c similarity index 100% rename from third_party/mspack/system.c rename to third_party/mspack/mspack/system.c