summaryrefslogtreecommitdiffstats
path: root/examples/mimetypeviewer/mimetypeviewer.pro
blob: ff0e67161bf08c3f128681475e7cbc04beabef57 (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
25
26
27
28
29
30
31
32
33
#-------------------------------------------------
#
# Project created by QtCreator 2011-05-07T14:29:03
#
#-------------------------------------------------

QT       += core gui

QT += widgets

TARGET = MimeTypeViewer
TEMPLATE = app

LIBS += -L$$OUT_PWD/../../src/mimetypes -lQtMimeTypes

INCLUDEPATH *= $$PWD/../../include/QtMimeTypes
CONFIG += depend_includepath

SOURCES += main.cpp\
    mimetypeviewer.cpp

HEADERS  += mimetypeviewer.h

FORMS    += mimetypeviewer.ui

QMAKE_CXXFLAGS += -W -Wall -Wextra -Werror -Wshadow -Wno-long-long -Wnon-virtual-dtor
mac|darwin: {
    QMAKE_CXXFLAGS += -ansi
} else:false {
    QMAKE_CXXFLAGS += -ansi -Wc++0x-compat
} else {
    QMAKE_CXXFLAGS += -std=c++0x
}