blob: 2b2c9e9df9d97cc23de2e90a6b933d0943b9c55c [file] [log] [blame]
Brian Waters13d96012017-12-08 16:53:31 -06001# The test_sip extension
2PROJECT("Diameter-SIP client Test Application (RFC4740)" C)
3
4FIND_PACKAGE(MySQL REQUIRED)
5INCLUDE_DIRECTORIES(${MySQL_INCLUDE_DIR})
6
7# List of source files
8SET( TEST_SIP_SRC
9 test_sip.c
10 test_sip.h
11 multimediaauth.c
12 locationinfo.c
13 locationinfosl.c
14 registrationtermination.c
15 userauthorization.c
16 serverassignment.c
17)
18
19# Compile as a module
20FD_ADD_EXTENSION(test_sip ${TEST_SIP_SRC})
21
22TARGET_LINK_LIBRARIES(test_sip ${MySQL_LIBRARIES})
23
24
25####
26## INSTALL section ##
27
28INSTALL(TARGETS test_sip
29 LIBRARY DESTINATION ${INSTALL_EXTENSIONS_SUFFIX}
30 COMPONENT freeDiameter-debug-tools)