添加linux依赖库

This commit is contained in:
zhangsheng 2026-03-09 20:19:13 +08:00
parent 928ddb96c4
commit 20bb02f006
9 changed files with 54 additions and 1 deletions

View File

@ -166,7 +166,6 @@ void CChannelList::iniUi()
ui->tableView->setColumnWidth(i, 130); ui->tableView->setColumnWidth(i, 130);
} }
} }
} }
void CChannelList::iniConnect() void CChannelList::iniConnect()

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,21 @@
###########################################################################
# libssh2 installation details
#
# Copyright (C) The libssh2 project and its contributors.
# SPDX-License-Identifier: BSD-3-Clause
###########################################################################
prefix=/opt/Tools/libssh2-1.11.1/install
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
Name: libssh2
URL: https://libssh2.org/
Description: Library for SSH-based communication
Version: 1.11.1
Requires:
Requires.private: libcrypto,zlib
Libs: -L${libdir} -lssh2
Libs.private: -L/opt/Tools/openssl-3.0.18/install/lib64 -lssl -L/opt/Tools/openssl-3.0.18/install/lib64 -lcrypto -R/opt/Tools/openssl-3.0.18/install/lib64 -L/opt/Tools/zlib-1.3.1/install/lib -lz -R/opt/Tools/zlib-1.3.1/install/lib
Cflags: -I${includedir}

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,13 @@
prefix=/opt/Tools/openssl-3.0.18/install
exec_prefix=${prefix}
libdir=${exec_prefix}/lib64
includedir=${prefix}/include
enginesdir=${libdir}/engines-3
modulesdir=${libdir}/ossl-modules
Name: OpenSSL-libcrypto
Description: OpenSSL cryptography library
Version: 3.0.18
Libs: -L${libdir} -lcrypto
Libs.private: -ldl -pthread
Cflags: -I${includedir}

View File

@ -0,0 +1,11 @@
prefix=/opt/Tools/openssl-3.0.18/install
exec_prefix=${prefix}
libdir=${exec_prefix}/lib64
includedir=${prefix}/include
Name: OpenSSL-libssl
Description: Secure Sockets Layer and cryptography libraries
Version: 3.0.18
Requires.private: libcrypto
Libs: -L${libdir} -lssl
Cflags: -I${includedir}

View File

@ -0,0 +1,9 @@
prefix=/opt/Tools/openssl-3.0.18/install
exec_prefix=${prefix}
libdir=${exec_prefix}/lib64
includedir=${prefix}/include
Name: OpenSSL
Description: Secure Sockets Layer and cryptography libraries and tools
Version: 3.0.18
Requires: libssl libcrypto