![Andreas Schneider](/assets/img/avatar_default.png)
This should fix the build on Windows and would not install pkg files. Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
57 строки
1.2 KiB
CMake
57 строки
1.2 KiB
CMake
project(libssh-tests C)
|
|
|
|
if (BSD OR SOLARIS OR OSX)
|
|
find_package(Argp)
|
|
endif (BSD OR SOLARIS OR OSX)
|
|
|
|
set(TORTURE_LIBRARY torture)
|
|
|
|
include_directories(
|
|
${LIBSSH_PUBLIC_INCLUDE_DIRS}
|
|
${CMOCKA_INCLUDE_DIR}
|
|
${OPENSSL_INCLUDE_DIR}
|
|
${GCRYPT_INCLUDE_DIR}
|
|
${ZLIB_INCLUDE_DIR}
|
|
${CMAKE_BINARY_DIR}
|
|
${CMAKE_SOURCE_DIR}/src
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
set(TORTURE_LINK_LIBRARIES
|
|
${CMOCKA_LIBRARY}
|
|
${LIBSSH_STATIC_LIBRARY}
|
|
${LIBSSH_LINK_LIBRARIES})
|
|
|
|
if (LIBSSH_THREADS)
|
|
set(TORTURE_LINK_LIBRARIES
|
|
${TORTURE_LINK_LIBRARIES}
|
|
${LIBSSH_THREADS_STATIC_LIBRARY}
|
|
${LIBSSH_THREADS_LINK_LIBRARIES})
|
|
endif (LIBSSH_THREADS)
|
|
|
|
# create test library
|
|
add_library(${TORTURE_LIBRARY} STATIC cmdline.c torture.c)
|
|
target_link_libraries(${TORTURE_LIBRARY}
|
|
${TORTURE_LINK_LIBRARIES}
|
|
${ARGP_LIBRARIES}
|
|
)
|
|
|
|
set(TEST_TARGET_LIBRARIES
|
|
${TORTURE_LIBRARY}
|
|
${TORTURE_LINK_LIBRARIES}
|
|
)
|
|
|
|
add_subdirectory(unittests)
|
|
|
|
if (WITH_CLIENT_TESTING)
|
|
add_subdirectory(client)
|
|
endif (WITH_CLIENT_TESTING)
|
|
|
|
if (WITH_BENCHMARKS)
|
|
add_subdirectory(benchmarks)
|
|
endif (WITH_BENCHMARKS)
|
|
|
|
if (WITH_SERVER)
|
|
add_subdirectory(pkd)
|
|
endif (WITH_SERVER)
|