standardise mspack source file layout

This commit is contained in:
p01arst0rm 2022-12-29 14:25:09 +00:00
parent e55cb737c1
commit df96781861
10 changed files with 10 additions and 10 deletions

View file

@ -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;

View file

@ -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")