File: FindKDSoap.cmake

package info (click to toggle)
kdsoap 2.2.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,000 kB
  • sloc: cpp: 19,877; python: 63; makefile: 13
file content (36 lines) | stat: -rw-r--r-- 703 bytes parent folder | download | duplicates (2)
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
# This file is part of the KD Soap project.
#
# SPDX-FileCopyrightText: 2011 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
#
# SPDX-License-Identifier: MIT
#

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
)