libwz is library for reading MapleStory WZ files.
Before building the project, ensure that the following dependencies are installed:
- macOS
brew install cmake ninja
git clone https://github.com/microsoft/vcpkg.git ~/vcpkg
cd ~/vcpkg
./bootstrap-vcpkg.sh- Linux (Ubuntu/Debian)
sudo apt update
sudo apt install cmake ninja-build
git clone https://github.com/microsoft/vcpkg.git ~/vcpkg
cd ~/vcpkg
./bootstrap-vcpkg.sh- Windows (PowerShell)
winget install Kitware.CMake
winget install Ninja-build.Ninja
git clone https://github.com/microsoft/vcpkg.git $env:USERPROFILE/vcpkg
cd $env:USERPROFILE/vcpkg
.\bootstrap-vcpkg.bat- macOS
cmake --preset default-mac
cmake --build build- Linux (Ubuntu/Debian)
cmake --preset default-linux
cmake --build build- Windows (PowerShell)
cmake --preset default-windows
cmake --build build