Right now it can only handle stuff like updating ffxivboot. It lacks indexed patch support, a lot of zipatch commands, etc.
19 lines
No EOL
440 B
CMake
19 lines
No EOL
440 B
CMake
project(libxiv)
|
|
|
|
find_package(fmt)
|
|
|
|
add_library(libxiv STATIC
|
|
src/fiinparser.cpp
|
|
src/indexparser.cpp
|
|
src/crc32.cpp
|
|
src/gamedata.cpp
|
|
src/compression.cpp
|
|
src/exhparser.cpp
|
|
src/exdparser.cpp
|
|
src/installextract.cpp
|
|
src/patch.cpp)
|
|
target_include_directories(libxiv PUBLIC include PRIVATE src)
|
|
target_link_libraries(libxiv PUBLIC
|
|
unshield
|
|
fmt::fmt
|
|
z) |