blob: 30ef23572ef0a02352331dc6623c34bf8c6eff7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
load(qttest_p4)
TEMPLATE = app
TARGET = tst_qdeclarativecomponent
QT += declarative
macx:CONFIG -= app_bundle
SOURCES += tst_qdeclarativecomponent.cpp testtypes.cpp
HEADERS += testtypes.h
# Define SRCDIR equal to test's source directory
DEFINES += SRCDIR=\\\"$$PWD\\\"
symbian* {
data.sources = data/*
data.path = data
samegame.sources = data/samegame/*
samegame.path = data/samegame
samegame_pics.sources = data/samegame/pics/*
samegame_pics.path = data/samegame/pics
DEPLOYMENT += data samegame samegame_pics
}
|