Files
qt-creator/src/plugins/cpptools/cpptoolsunittestfiles.pri
Nikolai Kosjar eaa93e8631 CppTools: Enable not exporting symbols
Having a dllexport in the sources for a TEMPLATE=app project (e.g.
unittest.pro) will create a library on Windows, which is not needed.

Change-Id: I0d454cdb7e3eb862200766ea101d41cef2758986
Reviewed-by: Marco Bubke <marco.bubke@theqtcompany.com>
2015-11-26 13:56:59 +00:00

10 lines
188 B
Plaintext

contains(CONFIG, dll) {
DEFINES += CPPTOOLS_LIBRARY
} else {
DEFINES += CPPTOOLS_STATIC_LIBRARY
}
HEADERS += $$PWD/senddocumenttracker.h
SOURCES += $$PWD/senddocumenttracker.cpp