1
1

cmake: fix build problem on ubuntu 18.04

Signed-off-by: Aris Adamantiadis <aris@0xbadc0de.be>
Этот коммит содержится в:
Aris Adamantiadis 2019-02-07 19:16:03 +01:00
родитель a1559505a5
Коммит f890b09edb

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

@ -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)