Go to file
2025-08-06 13:29:28 +08:00
2025-08-06 13:29:28 +08:00
2025-08-06 13:29:28 +08:00
2025-08-06 13:29:28 +08:00
2025-08-06 13:29:28 +08:00
2025-08-06 13:29:28 +08:00

exPKG

useage

#include "EXPKG/EXPKG.h"

int main(int argc, char** argv) {
  CommandArgs args{ argc, argv};

  PKG::EXPKG decompress(args);
  PKG::EXPKG decompress("path/to/file");
  PKG::EXPKG decompress("path/to/file", "path/to/output/directory");

  return 0;
}

Cmake

use as subdirectory

add_subdirectory(path/to/expkg)

add_executable(${TARGET} ${SRC_SOURCE})
target_link_libraries(${TARGET} expkg-static)

# or use dll by
# target_link_libraries(${TARGET} expkg-shared)

then

cmake -B build
cmake --build build --config Release -j8
Description
No description provided
Readme 1.4 MiB
expkg Latest
2026-06-20 18:31:56 +08:00
Languages
C++ 98.6%
CMake 0.9%
C 0.5%