1
0
mirror of synced 2025-01-31 03:53:44 +01:00
ImHex/plugins/decompress/CMakeLists.txt

20 lines
318 B
CMake
Raw Normal View History

2023-12-24 13:14:51 +01:00
cmake_minimum_required(VERSION 3.16)
include(ImHexPlugin)
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
)