blob: aaf7e83b5b37f3d092c295423dcc3f0ebb55f5b6 (
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
|
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)
set(IPCP_SHIM_UDP_TARGET ipcpd-shim-udp CACHE INTERNAL "")
set(SHIM_UDP_SOURCES
# Add source files here
${CMAKE_CURRENT_SOURCE_DIR}/main.c)
add_executable(ipcpd-shim-udp ${SHIM_UDP_SOURCES} ${IPCP_SOURCES})
target_link_libraries(ipcpd-shim-udp LINK_PUBLIC ouroboros-dev)
# Find the nsupdate executable
find_program(NSUPDATE_EXECUTABLE
NAMES nsupdate
DOC "The nsupdate tool that enables DDNS")
# Find the nslookup executable
find_program(NSLOOKUP_EXECUTABLE
NAMES nslookup
DOC "The nslookup tool that resolves DNS names")
mark_as_advanced(NSLOOKUP_EXECUTABLE NSUPDATE_EXECUTABLE)
if (NSLOOKUP_EXECUTABLE AND NSUPDATE_EXECUTABLE)
set(DISABLE_DDNS FALSE CACHE BOOL "Disable DDNS support")
if (NOT DISABLE_DNS)
message(STATUS "DDNS support enabled")
set(HAVE_DDNS TRUE CACHE INTERNAL "")
else ()
message(STATUS "DDNS support disabled by user")
unset(HAVE_DDNS CACHE)
endif ()
else ()
if (NSLOOKUP_EXECUTABLE)
message(STATUS "Install nsupdate to enable DDNS support")
elseif (NSUPDATE_EXECUTABLE)
message(STATUS "Install nslookup to enable DDNS support")
else ()
message(STATUS "Install nslookup and nsupdate to enable DDNS support")
endif ()
endif ()
include(AddCompileFlags)
if (CMAKE_BUILD_TYPE MATCHES "Debug*")
add_compile_flags(ipcpd-shim-udp -DCONFIG_OUROBOROS_DEBUG)
endif ()
install(TARGETS ipcpd-shim-udp RUNTIME DESTINATION sbin)
|