annotate extensions/app_sip/CMakeLists.txt @ 1293:17e6e6d72c9b

Added tag 1.2.1-rc2 for changeset 13948c684c35
author Sebastien Decugis <sdecugis@freediameter.net>
date Thu, 18 Jun 2015 22:58:01 +0800
parents 2bf587a8f6bc
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
833
2bf587a8f6bc Fix comments in CMakeLists -- Thomas Klausner <tk@giga.or.at>
Sebastien Decugis <sdecugis@freediameter.net>
parents: 437
diff changeset
1 # The app_sip extension
360
1740bee6c821 Initial App_SIP import
Alexandre Westfahl <awestfahl@freediameter.net>
parents:
diff changeset
2 PROJECT("Diameter SIP Application (RFC4740)" C)
1740bee6c821 Initial App_SIP import
Alexandre Westfahl <awestfahl@freediameter.net>
parents:
diff changeset
3
362
5b199400a290 Added missing pieces for app_sip
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 360
diff changeset
4 FIND_PACKAGE(MySQL REQUIRED)
5b199400a290 Added missing pieces for app_sip
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 360
diff changeset
5 INCLUDE_DIRECTORIES(${MySQL_INCLUDE_DIR})
360
1740bee6c821 Initial App_SIP import
Alexandre Westfahl <awestfahl@freediameter.net>
parents:
diff changeset
6
392
8e260030f32c Added configuration file for app_sip and test_sip
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 362
diff changeset
7 # Parser files
433
0d08a9ab2212 Corrected name mistakes on app_sip
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 431
diff changeset
8 BISON_FILE(app_sip.y)
0d08a9ab2212 Corrected name mistakes on app_sip
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 431
diff changeset
9 FLEX_FILE(app_sip.l)
0d08a9ab2212 Corrected name mistakes on app_sip
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 431
diff changeset
10 SET_SOURCE_FILES_PROPERTIES(lex.app_sip.c app_sip.tab.c PROPERTIES COMPILE_FLAGS "-I ${CMAKE_CURRENT_SOURCE_DIR}")
392
8e260030f32c Added configuration file for app_sip and test_sip
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 362
diff changeset
11
360
1740bee6c821 Initial App_SIP import
Alexandre Westfahl <awestfahl@freediameter.net>
parents:
diff changeset
12 # List of source files
1740bee6c821 Initial App_SIP import
Alexandre Westfahl <awestfahl@freediameter.net>
parents:
diff changeset
13 SET( DIAM_SIP_SRC
433
0d08a9ab2212 Corrected name mistakes on app_sip
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 431
diff changeset
14 lex.app_sip.c
0d08a9ab2212 Corrected name mistakes on app_sip
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 431
diff changeset
15 app_sip.tab.c
0d08a9ab2212 Corrected name mistakes on app_sip
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 431
diff changeset
16 app_sip.tab.h
0d08a9ab2212 Corrected name mistakes on app_sip
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 431
diff changeset
17 app_sip.c
0d08a9ab2212 Corrected name mistakes on app_sip
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 431
diff changeset
18 app_sip.h
0d08a9ab2212 Corrected name mistakes on app_sip
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 431
diff changeset
19 libapp_sip.c
360
1740bee6c821 Initial App_SIP import
Alexandre Westfahl <awestfahl@freediameter.net>
parents:
diff changeset
20 md5.c
1740bee6c821 Initial App_SIP import
Alexandre Westfahl <awestfahl@freediameter.net>
parents:
diff changeset
21 multimediaauth.c
419
9cc48cd22e67 Finished RTR on Diameter-SIP
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 392
diff changeset
22 registrationtermination.c
427
3d9f300f3b49 Added SAR/SAA and UAR/UAA
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 420
diff changeset
23 userauthorization.c
420
c8a61dabea55 app_sip:Added LIR/LIA for SL
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 419
diff changeset
24 pushprofile.c
427
3d9f300f3b49 Added SAR/SAA and UAR/UAA
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 420
diff changeset
25 serverassignment.c
420
c8a61dabea55 app_sip:Added LIR/LIA for SL
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 419
diff changeset
26 locationinfo.c
c8a61dabea55 app_sip:Added LIR/LIA for SL
Alexandre Westfahl <awestfahl@freediameter.net>
parents: 419
diff changeset
27 locationinfosl.c
360
1740bee6c821 Initial App_SIP import
Alexandre Westfahl <awestfahl@freediameter.net>
parents:
diff changeset
28 )
1740bee6c821 Initial App_SIP import
Alexandre Westfahl <awestfahl@freediameter.net>
parents:
diff changeset
29
1740bee6c821 Initial App_SIP import
Alexandre Westfahl <awestfahl@freediameter.net>
parents:
diff changeset
30 # Compile as a module
1740bee6c821 Initial App_SIP import
Alexandre Westfahl <awestfahl@freediameter.net>
parents:
diff changeset
31 FD_ADD_EXTENSION(app_sip ${DIAM_SIP_SRC})
1740bee6c821 Initial App_SIP import
Alexandre Westfahl <awestfahl@freediameter.net>
parents:
diff changeset
32
362
5b199400a290 Added missing pieces for app_sip
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 360
diff changeset
33 TARGET_LINK_LIBRARIES(app_sip ${MySQL_LIBRARIES})
431
1bb1bc417efe Reworked the packaging to include newest components
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 427
diff changeset
34
437
c405e93bb2cc Added build script for app_sip tools
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 436
diff changeset
35 SUBDIRS(tools)
c405e93bb2cc Added build script for app_sip tools
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 436
diff changeset
36
431
1bb1bc417efe Reworked the packaging to include newest components
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 427
diff changeset
37 ####
1bb1bc417efe Reworked the packaging to include newest components
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 427
diff changeset
38 ## INSTALL section ##
1bb1bc417efe Reworked the packaging to include newest components
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 427
diff changeset
39
1bb1bc417efe Reworked the packaging to include newest components
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 427
diff changeset
40 INSTALL(TARGETS app_sip
1bb1bc417efe Reworked the packaging to include newest components
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 427
diff changeset
41 LIBRARY DESTINATION ${INSTALL_EXTENSIONS_SUFFIX}
1bb1bc417efe Reworked the packaging to include newest components
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 427
diff changeset
42 COMPONENT freeDiameter-sip-server)
436
bfe99640cdfa Added documentation for app_sip in the debian package
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 433
diff changeset
43
bfe99640cdfa Added documentation for app_sip in the debian package
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 433
diff changeset
44 INSTALL(FILES README TODO
bfe99640cdfa Added documentation for app_sip in the debian package
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 433
diff changeset
45 DESTINATION /usr/share/doc/freeDiameter-sip-server
bfe99640cdfa Added documentation for app_sip in the debian package
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 433
diff changeset
46 CONFIGURATIONS DebianPackage
bfe99640cdfa Added documentation for app_sip in the debian package
Sebastien Decugis <sdecugis@nict.go.jp>
parents: 433
diff changeset
47 COMPONENT freeDiameter-sip-server)
"Welcome to our mercurial repository"