Added ability to override internal UDP API bound host/port

This commit is contained in:
Thulinma 2018-10-05 14:11:23 +02:00
parent 28db254d7b
commit b35d56cd8f
4 changed files with 17 additions and 2 deletions

View file

@ -98,6 +98,12 @@ endif()
if (DEFINED KILLONEXIT )
add_definitions(-DKILLONEXIT=true)
endif()
if (DEFINED UDP_API_HOST )
add_definitions(-DUDP_API_HOST=${UDP_API_HOST})
endif()
if (DEFINED UDP_API_PORT )
add_definitions(-DUDP_API_PORT=${UDP_API_PORT})
endif()
########################################
# Build Variables - Thread Names #