0
|
1 |
# -*- Mode: makefile -*-
|
|
2 |
COMMON_FOLDER = $$PWD/../common
|
|
3 |
include(../arthurtester.pri)
|
|
4 |
TEMPLATE = app
|
|
5 |
TARGET = shower
|
|
6 |
DEPENDPATH += .
|
|
7 |
INCLUDEPATH += .
|
|
8 |
DESTDIR = ../bin
|
|
9 |
|
|
10 |
QT += xml svg
|
|
11 |
contains(QT_CONFIG, opengl)|contains(QT_CONFIG, opengles1)|contains(QT_CONFIG, opengles2):QT += opengl
|
|
12 |
contains(QT_CONFIG, qt3support):QT += qt3support
|
|
13 |
|
|
14 |
# Input
|
|
15 |
HEADERS += shower.h
|
|
16 |
SOURCES += main.cpp shower.cpp
|
|
17 |
|
|
18 |
|