2015-01-09 09:07:59 -05:00
|
|
|
cmake_minimum_required (VERSION 2.6)
|
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/src/)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/lib/libevent/include)
|
|
|
|
|
|
|
|
add_definitions(-DTEST_GLOBALS=1)
|
2015-01-17 17:33:59 -05:00
|
|
|
|
|
|
|
# Create a single Network library that contains all the networking code:
|
2015-01-18 05:57:16 -05:00
|
|
|
set (Network_SRCS
|
2015-01-12 09:45:30 -05:00
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/CriticalSection.cpp
|
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/Event.cpp
|
2015-01-18 05:57:16 -05:00
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/HostnameLookup.cpp
|
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/IPLookup.cpp
|
2015-01-17 17:33:59 -05:00
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/NetworkSingleton.cpp
|
2015-01-18 05:57:16 -05:00
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/ServerHandleImpl.cpp
|
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/TCPLinkImpl.cpp
|
2015-01-12 09:45:30 -05:00
|
|
|
${CMAKE_SOURCE_DIR}/src/StringUtils.cpp
|
|
|
|
)
|
|
|
|
|
2015-01-18 05:57:16 -05:00
|
|
|
set (Network_HDRS
|
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/CriticalSection.h
|
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/Event.h
|
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/HostnameLookup.h
|
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/IPLookup.h
|
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/Network.h
|
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/NetworkSingleton.h
|
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/ServerHandleImpl.h
|
|
|
|
${CMAKE_SOURCE_DIR}/src/OSSupport/TCPLinkImpl.h
|
|
|
|
${CMAKE_SOURCE_DIR}/src/StringUtils.h
|
|
|
|
)
|
|
|
|
|
|
|
|
add_library(Network
|
|
|
|
${Network_SRCS}
|
|
|
|
${Network_HDRS}
|
|
|
|
)
|
|
|
|
|
2015-01-09 09:07:59 -05:00
|
|
|
target_link_libraries(Network event_core event_extra)
|
2015-01-11 05:21:18 -05:00
|
|
|
if (MSVC)
|
|
|
|
target_link_libraries(Network ws2_32.lib)
|
|
|
|
endif()
|
2015-01-09 09:07:59 -05:00
|
|
|
|
2015-05-23 07:59:41 -04:00
|
|
|
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
|
|
|
add_flags_cxx("-Wno-error=conversion")
|
|
|
|
endif()
|
2015-01-17 17:33:59 -05:00
|
|
|
|
|
|
|
# Define individual tests:
|
|
|
|
|
|
|
|
# Google: download the google.com frontpage using http client socket:
|
2015-01-09 09:07:59 -05:00
|
|
|
add_executable(Google-exe Google.cpp)
|
|
|
|
target_link_libraries(Google-exe Network)
|
|
|
|
add_test(NAME Google-test COMMAND Google-exe)
|
2015-01-11 05:21:18 -05:00
|
|
|
|
2015-01-17 17:33:59 -05:00
|
|
|
# EchoServer: Listen on port 9876, echo everything back:
|
2015-01-11 05:21:18 -05:00
|
|
|
add_executable(EchoServer EchoServer.cpp)
|
|
|
|
target_link_libraries(EchoServer Network)
|
|
|
|
|
2015-01-17 17:33:59 -05:00
|
|
|
# NameLookup: Lookup hostname-to-IP and IP-to-hostname:
|
2015-01-11 05:21:18 -05:00
|
|
|
add_executable(NameLookup NameLookup.cpp)
|
|
|
|
target_link_libraries(NameLookup Network)
|