c2b8cc00e53e27e23a5b0064e3e75c1e55ecaccb
[staging/HomeScreen.git] / interfaces / interfaces.pro
1 # Copyright (C) 2016 Mentor Graphics Development (Deutschland) GmbH
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 QT += core gui dbus
16 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
17
18 TEMPLATE = lib
19 CONFIG += staticlib
20 TARGET = interfaces
21
22 XMLSOURCES = \
23     daynightmode.xml \
24     popup.xml \
25     statusbar.xml
26
27 gen_adapter_cpp.input = XMLSOURCES
28 gen_adapter_cpp.commands = \
29     qdbusxml2cpp -m -a ${QMAKE_FILE_IN_BASE}_adapter ${QMAKE_FILE_IN}; \
30     moc $$OUT_PWD/${QMAKE_FILE_IN_BASE}_adapter.h -o $$OUT_PWD/${QMAKE_FILE_IN_BASE}_adapter.moc
31 gen_adapter_cpp.output = ${QMAKE_FILE_IN_BASE}_adapter.cpp
32 gen_adapter_cpp.variable_out = SOURCES
33 gen_adapter_cpp.clean = ${QMAKE_FILE_IN_BASE}_adapter.cpp
34
35 gen_proxy_cpp.input = XMLSOURCES
36 gen_proxy_cpp.commands = \
37     qdbusxml2cpp -m -p ${QMAKE_FILE_IN_BASE}_proxy ${QMAKE_FILE_IN}; \
38     moc $$OUT_PWD/${QMAKE_FILE_IN_BASE}_proxy.h -o $$OUT_PWD/${QMAKE_FILE_IN_BASE}_proxy.moc
39 gen_proxy_cpp.output = ${QMAKE_FILE_IN_BASE}_proxy.cpp
40 gen_proxy_cpp.variable_out = SOURCES
41 gen_proxy_cpp.clean = ${QMAKE_FILE_IN_BASE}_proxy.cpp
42
43 gen_adapter_h.input = XMLSOURCES
44 gen_adapter_h.commands = @echo Fake making the header for ${QMAKE_FILE_IN}
45 gen_adapter_h.depends = ${QMAKE_FILE_IN_BASE}_adapter.cpp
46 en_adapter_h.output = ${QMAKE_FILE_IN_BASE}_adapter.h
47 gen_adapter_h.clean = ${QMAKE_FILE_IN_BASE}_adapter.h
48
49 gen_proxy_h.input = XMLSOURCES
50 gen_proxy_h.commands = @echo Fake making the header for ${QMAKE_FILE_IN}
51 gen_proxy_h.depends = ${QMAKE_FILE_IN_BASE}_proxy.cpp
52 gen_proxy_h.output = ${QMAKE_FILE_IN_BASE}_proxy.h
53 gen_proxy_h.clean = ${QMAKE_FILE_IN_BASE}_proxy.h
54
55 QMAKE_EXTRA_COMPILERS += gen_adapter_cpp gen_proxy_cpp gen_adapter_h gen_proxy_h
56
57 # remove generated files
58 QMAKE_CLEAN += -r \
59     $$OUT_PWD/*