summaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
blob: 71a8023dfbd18f519a2515ed3b92898485ecaa5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
include_directories(${LIBSSH_PUBLIC_INCLUDE_DIRS})

set(SRC
	cssh.c
	msleep.c
)

ADD_GENGETOPT_FILES(SRC cssh_options.ggo)

add_executable(cssh ${SRC})

target_link_libraries(cssh ssh ssh_threads)