1
1
Этот коммит содержится в:
Andreas Schneider 2010-03-02 23:48:45 +01:00
родитель eec3532955
Коммит 8bcb835aa4
3 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -9,3 +9,7 @@ option(WITH_GCRYPT "Compile against libgcrypt" OFF)
option(WITH_PCAP "Compile with Pcap generation support" ON) option(WITH_PCAP "Compile with Pcap generation support" ON)
option(WITH_INTERNAL_DOC "Compile doxygen internal documentation" OFF) option(WITH_INTERNAL_DOC "Compile doxygen internal documentation" OFF)
option(WITH_TESTING "Build with unit tests" OFF) option(WITH_TESTING "Build with unit tests" OFF)
if (WITH_TESTING)
set(WITH_STATIC_LIB ON)
endif (WITH_TESTING)

Просмотреть файл

@ -12,7 +12,7 @@ include_directories(
# create test library # create test library
add_library(${TORTURE_LIBRARY} SHARED torture.c cmdline.c) add_library(${TORTURE_LIBRARY} SHARED torture.c cmdline.c)
target_link_libraries(${TORTURE_LIBRARY} ${CHECK_LIBRARIES} ${LIBSSH_LIBRARY}) target_link_libraries(${TORTURE_LIBRARY} ${CHECK_LIBRARIES} ${LIBSSH_STATIC_LIBRARY})
set(TEST_TARGET_LIBRARIES ${SUPPORT_LIBRARY}) set(TEST_TARGET_LIBRARIES ${SUPPORT_LIBRARY})

Просмотреть файл

@ -1,5 +1,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <pwd.h> #include <pwd.h>
#define LIBSSH_STATIC
#include <libssh/priv.h> #include <libssh/priv.h>
#include "torture.h" #include "torture.h"