File: test.pro

package info (click to toggle)
verdigris 1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,464 kB
  • sloc: cpp: 21,467; ansic: 2,065; makefile: 8
file content (17 lines) | stat: -rw-r--r-- 421 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CONFIG += testcase console
QT = network testlib
TARGET = tst_qobject

versionAtLeast(QT_VERSION, 6.2.0) {
  QT += testlib-private
}

equals(QT_MAJOR_VERSION, 6): SOURCES = tst_qobject6.cpp
equals(QT_MAJOR_VERSION, 5): SOURCES = tst_qobject5.cpp

# Force C++17 if available (needed due to P0012R1)
contains(QT_CONFIG, c++1z): CONFIG += c++1z

DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0

include(../../../src/verdigris.pri)