sdrangel/logging/logging.pro

36 wiersze
861 B
Prolog

#--------------------------------------------------------
#
# Pro file for Android and Windows builds with Qt Creator
#
#--------------------------------------------------------
QT += core
TEMPLATE = lib
TARGET = logging
INCLUDEPATH += $$PWD
QMAKE_CXXFLAGS += -std=c++11
CONFIG(Release):build_subdir = release
CONFIG(Debug):build_subdir = debug
# Enable very detailed debug messages when compiling the debug version
CONFIG(debug, debug|release) {
DEFINES += SUPERVERBOSE
}
HEADERS += $$PWD/logglobal.h \
$$PWD/logmessage.h \
$$PWD/logger.h \
$$PWD/filelogger.h \
$$PWD/dualfilelogger.h \
$$PWD/loggerwithfile.h
SOURCES += $$PWD/logmessage.cpp \
$$PWD/logger.cpp \
$$PWD/filelogger.cpp \
$$PWD/dualfilelogger.cpp \
$$PWD/loggerwithfile.cpp