aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/templates/wizards/autotest/files/src.pro
blob: 8d6647606667851590699b4c7f463dc20d08b654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@if "%{TestFrameWork}" == "QtTest"
@if "%{RequireGUI}" == "true"
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
@else
QT -= gui
@endif
@else
CONFIG -= qt
@endif
CONFIG += console c++11
CONFIG -= app_bundle

TEMPLATE = app

TARGET = %{ProjectName}

SOURCES += %{MainCppName}