mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-27 23:37:05 -05:00
24 lines
406 B
CMake
24 lines
406 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
include(ImHexPlugin)
|
|
|
|
find_package(libssh2 REQUIRED)
|
|
|
|
add_imhex_plugin(
|
|
NAME
|
|
remote
|
|
SOURCES
|
|
source/plugin_remote.cpp
|
|
source/content/helpers/sftp_client.cpp
|
|
source/content/providers/ssh_provider.cpp
|
|
|
|
INCLUDES
|
|
include
|
|
${LIBSSH2_INCLUDE_DIR}
|
|
|
|
LIBRARIES
|
|
ui
|
|
fonts
|
|
${LIBSSH2_LIBRARY}
|
|
)
|