- Online Remote System C Project
Build this project by CMakeList.txt
set(RTTY_VERSION_MAJOR 8) set(RTTY_VERSION_MINOR 1) set(RTTY_VERSION_PATCH 0)
find_package(Libev REQUIRED)
aux_source_directory(. SRCS) aux_source_directory(log SRCS) aux_source_directory(buffer SRCS)
add_executable(rtty
add_subdirectory(ssl)
if(SSL_SUPPORT) target_link_libraries(rtty PRIVATE ${SSL_TARGET}) endif()
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h)
install( TARGETS rtty DESTINATION bin )