Cross platform epwing library. These files are extracted from libeb, a epwing library parser.
cmake .
cmake --build .- CMake (≥ 3.22)
- Visual Studio (2019 or later, with "Desktop development with C++" workload)
- vcpkg (for dependency management)
cmake -DCMAKE_TOOLCHAIN_FILE=[path-to-vcpkg]/scripts/buildsystems/vcpkg.cmake .
cmake --build .Replace [path-to-vcpkg] with the actual path to your vcpkg installation.
If you prefer to manage dependencies manually, install zlib first and make sure CMake can find it, then:
cmake .
cmake --build .Note: On Windows, you must run these commands from a Visual Studio Developer Command Prompt (e.g., "Developer Command Prompt for VS 2022") or use
-Gto specify the generator, such as:cmake -G "Visual Studio 17 2022" -A x64 . cmake --build .