66498850f2
The tests include qapplication_p.h, therefore the .pro files need to specify QT += core-private gui-private Change-Id: Icd6d7ba31f79b8c7b15e0327dd5ce44c7f486221 Reviewed-by: Rohan McGovern
18 lines
372 B
Makefile
18 lines
372 B
Makefile
# -*- Mode: makefile -*-
|
|
COMMON_FOLDER = $$PWD/../common
|
|
include(../arthurtester.pri)
|
|
TEMPLATE = app
|
|
TARGET = shower
|
|
DEPENDPATH += .
|
|
INCLUDEPATH += .
|
|
DESTDIR = ../bin
|
|
|
|
QT += xml svg core-private gui-private
|
|
contains(QT_CONFIG, opengl)|contains(QT_CONFIG, opengles1)|contains(QT_CONFIG, opengles2):QT += opengl
|
|
|
|
# Input
|
|
HEADERS += shower.h
|
|
SOURCES += main.cpp shower.cpp
|
|
|
|
|