forked from KDAB/KDSoap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFindKDSoap.cmake
26 lines (22 loc) · 853 Bytes
/
FindKDSoap.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
# - Find KDSoap
# This module finds if KDSoap is installed.
#
# KDSoap_FOUND - Set to TRUE if KDSoap was found.
# KDSoap_LIBRARIES - Path to KDSoap libraries.
# KDSoap_INCLUDE_DIR - Path to the KDSoap include directory.
# KDSoap_CODEGENERATOR - Path to the KDSoap code generator.
#
# This file was generated automatically.
# Please edit generate-configure.sh rather than this file.
include(FindPackageHandleStandardArgs)
find_library(KDSoap_LIBRARIES
NAMES KDSoap kdsoap
PATH_SUFFIXES bin)
find_path(KDSoap_INCLUDE_DIR
NAMES KDSoapClient/KDSoapValue.h
PATH_SUFFIXES include src)
find_program(KDSoap_CODEGENERATOR
NAMES kdwsdl2cpp
PATH_SUFFIXES bin)
mark_as_advanced(KDSoap_LIBRARIES KDSoap_INCLUDE_DIR KDSoap_CODEGENERATOR)
find_package_handle_standard_args(KDSoap DEFAULT_MSG KDSoap_LIBRARIES KDSoap_INCLUDE_DIR KDSoap_CODEGENERATOR)