summaryrefslogtreecommitdiffstats
path: root/tests/auto/integration_multiprocess/server/server.pro
blob: 5bb7120775494102303e843cc700126e3e7a58b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
TEMPLATE = app
QT       += remoteobjects core testlib
QT       -= gui

TARGET = server
DESTDIR = ./
CONFIG   += c++11
CONFIG   -= app_bundle

REPC_SOURCE = $$PWD/../MyInterface.rep \
              $$PWD/../PodInterface.rep

SOURCES += main.cpp \
    mytestserver.cpp

HEADERS += \
    mytestserver.h
    $$OUT_PWD/rep_MyInterface_source.h

INCLUDEPATH += $$PWD