Archived
1
Fork 0
This repository has been archived on 2025-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
libxiv/CMakeLists.txt
Joshua Goins e9c7223048 Add basic patch installation support
Right now it can only handle stuff like updating ffxivboot. It lacks
indexed patch support, a lot of zipatch commands, etc.
2022-03-17 00:58:18 -04:00

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)