2019-04-10 05:20:53 +02:00
|
|
|
# BSArchive DLL and C++ bindings
|
2019-04-10 05:16:25 +02:00
|
|
|
BSArchive Dynamic Link Library and C++ bindings
|
2019-04-10 05:20:53 +02:00
|
|
|
|
|
|
|
|
## How to build
|
|
|
|
|
|
2019-04-10 05:24:16 +02:00
|
|
|
1) Create a `XEditPath` environment variable and set it to the directory containing the XEdit code
|
2019-04-10 05:20:53 +02:00
|
|
|
2) Build the DLL in Delphi by opening the `libbsarch.dproj` project
|
|
|
|
|
3) Build the LIB in Visual Studio by opening the `libbsarch.sln` project
|
|
|
|
|
|
|
|
|
|
## How to use
|
|
|
|
|
|
2020-01-01 23:44:31 +01:00
|
|
|
With CMake:
|
|
|
|
|
Use ``add_subdirectory`` and ``target_link_library``
|
|
|
|
|
Then ``#include "libbsarch.h"`` for the C wrapper, or ``#include "bs_archive_auto"`` for the C++ wrapper.
|
|
|
|
|
See the example for code use.
|
|
|
|
|
|
|
|
|
|
Without CMake:
|
|
|
|
|
Use `libbsarch.dll` (provided in delphi/lib), `libbsarch.lib` and `libbsarch.h` in your project.
|
2019-04-10 05:44:17 +02:00
|
|
|
|
2019-04-10 05:45:16 +02:00
|
|
|
## Credits
|
2019-04-10 05:44:17 +02:00
|
|
|
|
|
|
|
|
The original BSArchive can be found at: https://github.com/TES5Edit/TES5Edit/tree/dev/Tools/BSArchive
|
2020-01-01 23:44:31 +01:00
|
|
|
The version in this project had been modified for better compatibility with C/C++ and allow the users to allocate their own memory in some cases.
|