-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFindVAxis2.cmake
44 lines (36 loc) · 1.02 KB
/
FindVAxis2.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# $Id$
include( FindPackageHandleStandardArgs )
include( VistaFindUtils )
if( NOT VAXIS2_FOUND )
vista_find_package_root( AXIS2 include/axis2_addr.h ) # Arbitrary header chosen
if( AXIS2_ROOT_DIR )
set( AXIS2_LIBRARIES
optimized axiom
optimized axis2_engine
optimized axis2_http_receiver
optimized axis2_http_sender
optimized axis2_parser
optimized axis2_tcp_receiver
optimized axis2_tcp_sender
optimized axis2_xpath
optimized axutil
optimized guththila
optimized neethi
debug axiom
debug axis2_engine
debug axis2_http_receiver
debug axis2_http_sender
debug axis2_parser
debug axis2_tcp_receiver
debug axis2_tcp_sender
debug axis2_xpath
debug axutil
debug guththila
debug neethi
)
mark_as_advanced( AXIS2_LIBRARIES )
set( AXIS2_INCLUDE_DIRS ${AXIS2_ROOT_DIR}/include )
set( AXIS2_LIBRARY_DIRS ${AXIS2_ROOT_DIR}/lib )
endif( AXIS2_ROOT_DIR )
endif( NOT VAXIS2_FOUND )
find_package_handle_standard_args( VAXIS2 "AXIS2 could not be found" AXIS2_ROOT_DIR )