blob: 17fc465bf5f8c50038252d1cf913348cf868e1fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
TEMPLATE = app
TARGET = xmlpatternsvalidator
DESTDIR = ../../bin
QT -= gui
QT += xmlpatterns
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
|