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

set(SRC
	cssh.c
	port.c
	progressbar.c
)

ADD_GENGETOPT_FILES(SRC options.ggo)

add_executable(cssh ${SRC})

target_link_libraries(cssh ssh ssh_threads)