blob: 795bf7e32b39c3a2dc872c76c6c355f3648465e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
TEMPLATE = app
TARGET = xmlpatternsvalidator
DESTDIR = ../../bin
QT -= gui
QT += xmlpatterns
build_all:!build_pass {
CONFIG -= build_all
CONFIG += release
}
target.path = $$[QT_INSTALL_BINS]
INSTALLS += target
# This ensures we get stderr and stdout on Windows.
CONFIG += console
# This ensures that this is a command-line program on OS X and not a GUI application.
CONFIG -= app_bundle
SOURCES = main.cpp
HEADERS = main.h
symbian: TARGET.UID3 = 0xA000D7CA
|