File: examples.pri

package info (click to toggle)
kdsoap 1.9.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,568 kB
  • sloc: cpp: 18,969; python: 438; sh: 281; makefile: 8
file content (27 lines) | stat: -rw-r--r-- 996 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
# This file is included by all of the examples' *.pro files.

# KDSOAPLIB is defined by the toplevel kdsoap.pro and stored into .qmake.cache
isEmpty(KDSOAPLIB): error("KDSOAPLIB is empty. This should not happen, please check .qmake.cache at the toplevel")

INCLUDEPATH += \
            $${TOP_SOURCE_DIR}/src \
            $${TOP_SOURCE_DIR}/src/KDSoapClient \
            $${TOP_SOURCE_DIR}/src/KDSoapServer \
            $${TOP_SOURCE_DIR}/examples/tools
DEPENDPATH += \
            $${TOP_SOURCE_DIR}/src \
            $${TOP_SOURCE_DIR}/src/KDSoapClient \
            $${TOP_SOURCE_DIR}/src/KDSoapServer \
            $${TOP_SOURCE_DIR}/examples/tools
LIBS        += -L$${TOP_BUILD_DIR}/lib -l$$KDSOAPLIB
!isEmpty(QMAKE_LFLAGS_RPATH):LIBS += $$QMAKE_LFLAGS_RPATH$${TOP_BUILD_DIR}/lib

include($${TOP_SOURCE_DIR}/variables.pri)
DEFINES -= QT_NO_CAST_FROM_ASCII

include($${TOP_SOURCE_DIR}/kdwsdl2cpp.pri)

# Assume command-line by default
CONFIG += console
QT -= gui
macx:CONFIG -= app_bundle