view extensions/test_sip/CMakeLists.txt @ 1552:449b766ded50

extensions: fix dependency checking Fix extension dependency checking by unhiding "fd_ext_depends". (I accidentally broke this with the change on 2020-03-30 to hide symbols by default.)
author Luke Mewburn <luke@mewburn.net>
date Sat, 18 Jul 2020 18:38:11 +1000
parents 3c0b895d0900
children
line wrap: on
line source

# The test_sip extension
PROJECT("Diameter-SIP client Test Application (RFC4740)" C)

FIND_PACKAGE(MySQL REQUIRED)
INCLUDE_DIRECTORIES(${MySQL_INCLUDE_DIR}) 

# List of source files
SET( TEST_SIP_SRC
	test_sip.c
	test_sip.h
	multimediaauth.c
	locationinfo.c
	locationinfosl.c
	registrationtermination.c
	userauthorization.c
	serverassignment.c
)

# Compile as a module
FD_ADD_EXTENSION(test_sip ${TEST_SIP_SRC})

TARGET_LINK_LIBRARIES(test_sip ${MySQL_LIBRARIES})


####
## INSTALL section ##

INSTALL(TARGETS test_sip
	LIBRARY DESTINATION ${INSTALL_EXTENSIONS_SUFFIX}
	COMPONENT freeDiameter-debug-tools)
"Welcome to our mercurial repository"