From 10a5134de7882785eb123f5830c3d7b557689440 Mon Sep 17 00:00:00 2001 From: vsr Date: Mon, 10 Feb 2014 18:42:07 +0400 Subject: [PATCH] Add missing libraries --- CMakeModules/FindWSO2.cmake | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/CMakeModules/FindWSO2.cmake b/CMakeModules/FindWSO2.cmake index 7ebffd6..9ad5150 100644 --- a/CMakeModules/FindWSO2.cmake +++ b/CMakeModules/FindWSO2.cmake @@ -47,13 +47,23 @@ IF(WSO2_INCLUDE_DIR_axis2) LIST(APPEND WSO2_INCLUDES ${WSO2_INCLUDE_DIR_axis2} ${WSO2_INCLUDE_DIR_axis2}/platforms) ENDIF() -FIND_LIBRARY(WSO2_LIBRARY_axis2_axiom NAMES axis2_axiom) -FIND_LIBRARY(WSO2_LIBRARY_axis2_engine NAMES axis2_engine) -FIND_LIBRARY(WSO2_LIBRARY_wso2_wsf NAMES wso2_wsf) +FIND_LIBRARY(WSO2_LIBRARY_axutil NAMES axutil) +FIND_LIBRARY(WSO2_LIBRARY_guththila NAMES guththila) +FIND_LIBRARY(WSO2_LIBRARY_neethi NAMES neethi) +FIND_LIBRARY(WSO2_LIBRARY_axis2_parser NAMES axis2_parser) +FIND_LIBRARY(WSO2_LIBRARY_axis2_axiom NAMES axis2_axiom) +FIND_LIBRARY(WSO2_LIBRARY_axis2_http_common NAMES axis2_http_common) +FIND_LIBRARY(WSO2_LIBRARY_axis2_engine NAMES axis2_engine) +FIND_LIBRARY(WSO2_LIBRARY_wso2_wsf NAMES wso2_wsf) SET(WSO2_LIBRARIES) +SET(WSO2_LIBRARIES ${WSO2_LIBRARIES} ${WSO2_LIBRARY_axutil}) +SET(WSO2_LIBRARIES ${WSO2_LIBRARIES} ${WSO2_LIBRARY_guththila}) +SET(WSO2_LIBRARIES ${WSO2_LIBRARIES} ${WSO2_LIBRARY_neethi}) +SET(WSO2_LIBRARIES ${WSO2_LIBRARIES} ${WSO2_LIBRARY_axis2_parser}) SET(WSO2_LIBRARIES ${WSO2_LIBRARIES} ${WSO2_LIBRARY_axis2_axiom}) -SET(WSO2_LIBRARIES ${WSO2_LIBRARIES} ${WSO2_LIBRARY_axis2_engine}) +SET(WSO2_LIBRARIES ${WSO2_LIBRARIES} ${WSO2_LIBRARY_axis2_http_common}) +SET(WSO2_LIBRARIES ${WSO2_LIBRARIES} ${WSO2_LIBRARY_axis2_engine}) SET(WSO2_LIBRARIES ${WSO2_LIBRARIES} ${WSO2_LIBRARY_wso2_wsf}) INCLUDE(FindPackageHandleStandardArgs) -- 2.30.2