Mercurial > hg > tony
annotate test-svcore-system.pro @ 641:327177b6bd3a v2.1pre2
Fix recently-introduced bug that made the scale disappear and tracks jump around when toggling off the spectrogram
author | Chris Cannam |
---|---|
date | Thu, 17 Oct 2019 14:44:55 +0100 |
parents | 1058d9b37a97 |
children |
rev | line source |
---|---|
Chris@536 | 1 |
Chris@536 | 2 TEMPLATE = app |
Chris@536 | 3 |
Chris@536 | 4 exists(config.pri) { |
Chris@536 | 5 include(config.pri) |
Chris@536 | 6 } |
Chris@536 | 7 |
Chris@536 | 8 !exists(config.pri) { |
Chris@536 | 9 include(noconfig.pri) |
Chris@536 | 10 } |
Chris@536 | 11 |
Chris@536 | 12 include(base.pri) |
Chris@536 | 13 |
Chris@536 | 14 CONFIG += console |
Chris@536 | 15 QT += network xml testlib |
Chris@536 | 16 QT -= gui |
Chris@536 | 17 |
Chris@536 | 18 win32-x-g++:QMAKE_LFLAGS += -Wl,-subsystem,console |
Chris@536 | 19 macx*: CONFIG -= app_bundle |
Chris@536 | 20 |
Chris@536 | 21 TARGET = test-svcore-system |
Chris@536 | 22 |
Chris@536 | 23 OBJECTS_DIR = o |
Chris@536 | 24 MOC_DIR = o |
Chris@536 | 25 |
Chris@536 | 26 include(svcore/system/test/files.pri) |
Chris@536 | 27 |
Chris@536 | 28 for (file, TEST_SOURCES) { SOURCES += $$sprintf("svcore/system/test/%1", $$file) } |
Chris@536 | 29 for (file, TEST_HEADERS) { HEADERS += $$sprintf("svcore/system/test/%1", $$file) } |
Chris@536 | 30 |
Chris@536 | 31 !win32* { |
Chris@536 | 32 QMAKE_POST_LINK = ./$${TARGET} |
Chris@536 | 33 } |