summaryrefslogtreecommitdiffstats
path: root/doxygen/examples/CMakeLists.txt
blob: b58f7bf9c764b8eeeddc7fd5ad3f416028652782 (plain)
1
2
3
4
5
6
7
8
if(CMAKE_BUILD_TYPE STREQUAL Debug)
    if(RTRLIB_HAVE_LIBSSH)
        add_executable(rtr_mgr rtr_mgr.c)
        target_link_libraries(rtr_mgr rtrlib)
        add_executable(ssh_tr ssh_tr.c)
        target_link_libraries(ssh_tr rtrlib_static)
    endif(RTRLIB_HAVE_LIBSSH)
endif(CMAKE_BUILD_TYPE STREQUAL Debug)