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