mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-27 23:37:05 -05:00
20 lines
322 B
CMake
20 lines
322 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
include(ImHexPlugin)
|
|
|
|
find_package(LibArchive 3.6 REQUIRED)
|
|
|
|
add_imhex_plugin(
|
|
NAME
|
|
decompress
|
|
SOURCES
|
|
source/plugin_decompress.cpp
|
|
|
|
source/content/pl_functions.cpp
|
|
INCLUDES
|
|
include
|
|
LIBRARIES
|
|
ui
|
|
LibArchive::LibArchive
|
|
)
|