annotate extensions/rt_ignore_dh/CMakeLists.txt @ 1562:6219359a36a9 default tip

Merge latest changes from proposed branch
author Sebastien Decugis <sdecugis@freediameter.net>
date Mon, 21 Jun 2021 19:08:18 +0800
parents a740267f1be6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1041
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
1 # The rt_ignore_dh extension
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
2 PROJECT("Routing extension that removes Destination-Host from messages and restores from Proxy-Info for answers" C)
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
3
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
4 # List of source files
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
5 SET(RT_IGNORE_DH_SRC
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
6 rt_ignore_dh.c
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
7 )
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
8
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
9 INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR})
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
10
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
11 # Compile these files as a freeDiameter extension
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
12 FD_ADD_EXTENSION(rt_ignore_dh ${RT_IGNORE_DH_SRC})
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
13
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
14 ####
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
15 ## INSTALL section ##
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
16
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
17 # We install with the daemon component because it is a base feature.
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
18 INSTALL(TARGETS rt_ignore_dh
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
19 LIBRARY DESTINATION ${INSTALL_EXTENSIONS_SUFFIX}
a740267f1be6 Add extension that removes Destination-Host from Requests and restores it for Answers.
Thomas Klausner <tk@giga.or.at>
parents:
diff changeset
20 COMPONENT freeDiameter-daemon)
"Welcome to our mercurial repository"