summaryrefslogtreecommitdiff
path: root/src/ipcpd/shim-udp/CMakeLists.txt
blob: e10a8ca6292b1ec0fa224cb89b27d42143d19ae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
get_filename_component(CURRENT_SOURCE_PARENT_DIR
  ${CMAKE_CURRENT_SOURCE_DIR} DIRECTORY)
get_filename_component(CURRENT_BINARY_PARENT_DIR
  ${CMAKE_CURRENT_BINARY_DIR} DIRECTORY)

include_directories(${CMAKE_CURRENT_SOURCE_DIR})
include_directories(${CMAKE_CURRENT_BINARY_DIR})

include_directories(${CURRENT_SOURCE_PARENT_DIR})
include_directories(${CURRENT_BINARY_PARENT_DIR})

include_directories(${CMAKE_SOURCE_DIR}/include)
include_directories(${CMAKE_BINARY_DIR}/include)

# Find library needed for gethostbyname.
include(CheckFunctionExists)
CHECK_FUNCTION_EXISTS("gethostbyname" CMAKE_HAVE_GETHOSTBYNAME)
IF(NOT CMAKE_HAVE_GETHOSTBYNAME)
  CHECK_LIBRARY_EXISTS("nsl" "gethostbyname" "" CMAKE_LIB_NSL_HAS_GETHOSTBYNAME)
  IF (CMAKE_LIB_NSL_HAS_GETHOSTBYNAME)
    SET (X11_X_EXTRA_LIBS ${X11_X_EXTRA_LIBS} -lnsl)
  ELSE (CMAKE_LIB_NSL_HAS_GETHOSTBYNAME)
    CHECK_LIBRARY_EXISTS("bsd" "gethostbyname" ""
      CMAKE_LIB_BSD_HAS_GETHOSTBYNAME)
    IF (CMAKE_LIB_BSD_HAS_GETHOSTBYNAME)
      SET (X11_X_EXTRA_LIBS ${X11_X_EXTRA_LIBS} -lbsd)
    ENDIF (CMAKE_LIB_BSD_HAS_GETHOSTBYNAME)
  ENDIF (CMAKE_LIB_NSL_HAS_GETHOSTBYNAME)
ENDIF(NOT CMAKE_HAVE_GETHOSTBYNAME)

# Enable DNS by default
if (NOT DISABLE_DNS MATCHES True)
  # Find the nsupdate executable
  find_program(NSUPDATE_EXECUTABLE
    NAMES nsupdate
    DOC "The nsupdate tool that enables DDNS")

  if (${NSUPDATE_EXECUTABLE} STREQUAL "NSUPDATE_EXECUTABLE-NOTFOUND")
    message(FATAL_ERROR "Could not find nsupdate, which is needed for DDNS")
  else()
    message("-- Found nsupdate: ${NSUPDATE_EXECUTABLE}")
  endif()

  # Find the nslookup executable
  find_program(NSLOOKUP_EXECUTABLE
    NAMES nslookup
    DOC "The nslookup tool that resolves DNS names")

  if (${NSLOOKUP_EXECUTABLE} STREQUAL "NSLOOKUP_EXECUTABLE-NOTFOUND")
    message(FATAL_ERROR
      "Could not find nslookup, which is needed for DNS resolution")
  else()
    message("-- Found nslookup: ${NSLOOKUP_EXECUTABLE}")
  endif()
endif()

configure_file(
  "${CMAKE_CURRENT_SOURCE_DIR}/shim_udp_config.h.in"
  "${CMAKE_CURRENT_BINARY_DIR}/shim_udp_config.h")

SET(IPCP_SHIM_UDP_TARGET ipcpd-shim-udp CACHE STRING "IPCP_SHIM_UDP_TARGET")

set(SHIM_UDP_SOURCES
  # Add source files here
  ${CMAKE_CURRENT_SOURCE_DIR}/main.c)

add_executable (ipcpd-shim-udp ${SHIM_UDP_SOURCES} ${IPCP_SOURCES}
  "${CMAKE_CURRENT_BINARY_DIR}/shim_udp_config.h")
target_link_libraries (ipcpd-shim-udp LINK_PUBLIC ouroboros)

# Enable DNS by default
if (NOT DISABLE_DNS MATCHES True)
  MACRO_ADD_COMPILE_FLAGS(ipcpd-shim-udp -DCONFIG_OUROBOROS_ENABLE_DNS)
endif()

include(MacroAddCompileFlags)
if (CMAKE_BUILD_TYPE MATCHES Debug)
  MACRO_ADD_COMPILE_FLAGS(ipcpd-shim-udp -DCONFIG_OUROBOROS_DEBUG)
endif (CMAKE_BUILD_TYPE MATCHES Debug)

install(TARGETS ipcpd-shim-udp RUNTIME DESTINATION bin)

# Enable once ipcp-shim-udp has tests
add_subdirectory(tests)