Add version.
Some checks failed
Dropshell Test / Build_and_Test (push) Has been cancelled

This commit is contained in:
Your Name 2025-05-13 21:05:33 +12:00
parent 296434ff1f
commit 30cfd591a3
2 changed files with 2 additions and 37 deletions

View File

@ -1,35 +0,0 @@
# - Try to find LibSSH
# Once done this will define
# LIBSSH_FOUND - System has LibSSH
# LIBSSH_INCLUDE_DIRS - The LibSSH include directories
# LIBSSH_LIBRARIES - The libraries needed to use LibSSH
# LIBSSH_DEFINITIONS - Compiler switches required for using LibSSH
find_package(PkgConfig QUIET)
if(PKG_CONFIG_FOUND)
pkg_check_modules(PC_LIBSSH QUIET libssh)
set(LIBSSH_DEFINITIONS ${PC_LIBSSH_CFLAGS_OTHER})
endif()
find_path(LIBSSH_INCLUDE_DIR
NAMES libssh/libssh.h
HINTS ${PC_LIBSSH_INCLUDEDIR} ${PC_LIBSSH_INCLUDE_DIRS}
PATH_SUFFIXES libssh
)
find_library(LIBSSH_LIBRARY
NAMES ssh libssh
HINTS ${PC_LIBSSH_LIBDIR} ${PC_LIBSSH_LIBRARY_DIRS}
)
include(FindPackageHandleStandardArgs)
# Handle the QUIETLY and REQUIRED arguments and set LIBSSH_FOUND to TRUE
# if all listed variables are TRUE
find_package_handle_standard_args(LibSSH DEFAULT_MSG
LIBSSH_LIBRARY LIBSSH_INCLUDE_DIR
)
mark_as_advanced(LIBSSH_INCLUDE_DIR LIBSSH_LIBRARY)
set(LIBSSH_LIBRARIES ${LIBSSH_LIBRARY})
set(LIBSSH_INCLUDE_DIRS ${LIBSSH_INCLUDE_DIR})

View File

@ -11,9 +11,9 @@ namespace dropshell {
} }
// Static registration // Static registration
struct UninstallCommandRegister struct VersionCommandRegister
{ {
UninstallCommandRegister() VersionCommandRegister()
{ {
CommandRegistry::instance().register_command({version_name_list, CommandRegistry::instance().register_command({version_name_list,
version_handler, version_handler,