2023-12-24 13:14:51 +01:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
|
|
|
|
include(ImHexPlugin)
|
|
|
|
|
2023-12-24 13:33:18 +01:00
|
|
|
find_package(LibArchive REQUIRED)
|
2023-12-24 13:14:51 +01:00
|
|
|
|
|
|
|
add_imhex_plugin(
|
|
|
|
NAME
|
|
|
|
decompress
|
|
|
|
SOURCES
|
|
|
|
source/plugin_decompress.cpp
|
|
|
|
|
|
|
|
source/content/pl_functions.cpp
|
|
|
|
INCLUDES
|
|
|
|
include
|
|
|
|
LIBRARIES
|
|
|
|
ui
|
|
|
|
LibArchive::LibArchive
|
|
|
|
)
|