blob: f0717b90dfe0048c6bd644988c2a8029bd349746 [file] [log] [blame]
Brian Waters13d96012017-12-08 16:53:31 -06001# The rt_ignore_dh extension
2PROJECT("Routing extension that removes Destination-Host from messages and restores from Proxy-Info for answers" C)
3
4# List of source files
5SET(RT_IGNORE_DH_SRC
6 rt_ignore_dh.c
7)
8
9INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR})
10
11# Compile these files as a freeDiameter extension
12FD_ADD_EXTENSION(rt_ignore_dh ${RT_IGNORE_DH_SRC})
13
14####
15## INSTALL section ##
16
17# We install with the daemon component because it is a base feature.
18INSTALL(TARGETS rt_ignore_dh
19 LIBRARY DESTINATION ${INSTALL_EXTENSIONS_SUFFIX}
20 COMPONENT freeDiameter-daemon)