tmate/libssh/tests/CMakeLists.txt

53 lines
1.1 KiB
CMake
Raw Normal View History

2013-06-10 06:58:12 +02:00
project(tests C)
2014-10-31 05:10:02 +01:00
if (BSD OR SOLARIS OR OSX)
2013-06-10 06:58:12 +02:00
find_package(Argp)
2014-10-31 05:10:02 +01:00
endif (BSD OR SOLARIS OR OSX)
2013-06-10 06:58:12 +02:00
set(TORTURE_LIBRARY torture)
include_directories(
${LIBSSH_PUBLIC_INCLUDE_DIRS}
${CMOCKA_INCLUDE_DIR}
${OPENSSL_INCLUDE_DIRS}
${GCRYPT_INCLUDE_DIRS}
${ZLIB_INCLUDE_DIRS}
${CMAKE_BINARY_DIR}
${CMAKE_SOURCE_DIR}/src
${CMAKE_CURRENT_SOURCE_DIR}
)
# create test library
add_library(${TORTURE_LIBRARY} STATIC cmdline.c torture.c)
target_link_libraries(${TORTURE_LIBRARY}
${CMOCKA_LIBRARY}
${LIBSSH_STATIC_LIBRARY}
${LIBSSH_LINK_LIBRARIES}
${LIBSSH_THREADS_STATIC_LIBRARY}
${LIBSSH_THREADS_LINK_LIBRARIES}
${ARGP_LIBRARIES}
)
set(TEST_TARGET_LIBRARIES
${TORTURE_LIBRARY}
${CMOCKA_LIBRARY}
${LIBSSH_STATIC_LIBRARY}
${LIBSSH_LINK_LIBRARIES}
${LIBSSH_THREADS_STATIC_LIBRARY}
${LIBSSH_THREADS_LINK_LIBRARIES}
)
add_subdirectory(unittests)
2014-10-31 05:10:02 +01:00
2013-06-10 06:58:12 +02:00
if (WITH_CLIENT_TESTING)
add_subdirectory(client)
endif (WITH_CLIENT_TESTING)
if (WITH_BENCHMARKS)
add_subdirectory(benchmarks)
endif (WITH_BENCHMARKS)
2014-10-31 05:10:02 +01:00
if (WITH_SERVER)
add_subdirectory(pkd)
endif (WITH_SERVER)