1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-01 11:26:52 +03:00

cmake: fix build problem on ubuntu 18.04

Signed-off-by: Aris Adamantiadis <aris@0xbadc0de.be>
This commit is contained in:
Aris Adamantiadis
2019-02-07 19:16:03 +01:00
parent a1559505a5
commit f890b09edb

View File

@ -29,10 +29,10 @@ if (UNIX AND NOT WIN32)
add_executable(test_server ${server_SRCS})
target_compile_options(test_server PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
target_link_libraries(test_server
testserver
${LIBSSH_SHARED_LIBRARY}
${ARGP_LIBRARY}
util
testserver)
util)
endif ()
endif (WITH_SERVER AND UNIX AND NOT WIN32)