From 48ba9c9bc1b6845a2c65773e91fd95a82e2f71aa Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Thu, 21 Jan 2010 21:54:20 +0100 Subject: stub of C++ wrapper for libssh --- examples/CMakeLists.txt | 4 +++- examples/libsshpp.cpp | 10 ++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 examples/libsshpp.cpp (limited to 'examples') diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 77eb4173..94d89499 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,4 +1,4 @@ -project(libssh-examples C) +project(libssh-examples C CXX) set(examples_SRCS authentication.c @@ -15,11 +15,13 @@ add_executable(libssh_scp libssh_scp.c ${examples_SRCS}) add_executable(scp_download scp_download.c ${examples_SRCS}) add_executable(samplessh sample.c ${examples_SRCS}) add_executable(exec exec.c ${examples_SRCS}) +add_executable(libsshpp libsshpp.cpp) target_link_libraries(libssh_scp ${LIBSSH_SHARED_LIBRARY}) target_link_libraries(scp_download ${LIBSSH_SHARED_LIBRARY}) target_link_libraries(samplessh ${LIBSSH_SHARED_LIBRARY}) target_link_libraries(exec ${LIBSSH_SHARED_LIBRARY}) +target_link_libraries(libsshpp ${LIBSSH_SHARED_LIBRARY}) include_directories( ${LIBSSH_PUBLIC_INCLUDE_DIRS} diff --git a/examples/libsshpp.cpp b/examples/libsshpp.cpp new file mode 100644 index 00000000..eb415d8c --- /dev/null +++ b/examples/libsshpp.cpp @@ -0,0 +1,10 @@ + +#include + +int main(int argc, const char **argv){ + ssh::Session session; + session.setOption(SSH_OPTIONS_HOST,"localhost"); + session.connect(); + session.userauthAutopubkey(); + return 0; +} -- cgit