FPacker
A small cross-platform c++ library for packing a directory into a single file
Please Note: This will not compress the files, it just organises them within a binary file.
Documentation
Usage
First, download the static libraries from the Release page. Inside your project, include the header from include/
, and depending on what configuration you are building your project in, you should link either x64/Release/fpacker.lib
for release mode, or x64/Debug/fpacker-d.lib
for debug mode.
See example/src/main.cpp for a demonstration on how to use the library.
Building from source
Visual Studio 2022 is required to build from source.
Clone the repo (Use github desktop, or run git clone https://github.com/oxi-dev0/fpacker/
).
Then, run GenerateProject.bat
to generate the visual studio project files. Premake is included with the repo.