mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-21 23:55:13 -05:00
Logging: Windows build
This commit is contained in:
parent
6556096a63
commit
715222365f
35
logging/logging.pro
Normal file
35
logging/logging.pro
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
#--------------------------------------------------------
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
|
@ -68,7 +68,7 @@ QString LogMessage::toString(const QString& msgFormat, const QString& timestampF
|
|||||||
decorated.replace("{line}",QString::number(line));
|
decorated.replace("{line}",QString::number(line));
|
||||||
|
|
||||||
QString threadId;
|
QString threadId;
|
||||||
threadId.setNum((unsigned long)QThread::currentThreadId());
|
threadId.setNum((std::size_t)QThread::currentThreadId());
|
||||||
decorated.replace("{thread}",threadId);
|
decorated.replace("{thread}",threadId);
|
||||||
|
|
||||||
// Fill in variables
|
// Fill in variables
|
||||||
|
@ -11,6 +11,7 @@ TEMPLATE = lib
|
|||||||
TARGET = sdrgui
|
TARGET = sdrgui
|
||||||
INCLUDEPATH += $$PWD
|
INCLUDEPATH += $$PWD
|
||||||
INCLUDEPATH += ../sdrbase
|
INCLUDEPATH += ../sdrbase
|
||||||
|
INCLUDEPATH += ../logging
|
||||||
|
|
||||||
DEFINES += USE_KISSFFT=1
|
DEFINES += USE_KISSFFT=1
|
||||||
win32 {
|
win32 {
|
||||||
@ -61,6 +62,7 @@ SOURCES += mainwindow.cpp\
|
|||||||
gui/glspectrumgui.cpp\
|
gui/glspectrumgui.cpp\
|
||||||
gui/indicator.cpp\
|
gui/indicator.cpp\
|
||||||
gui/levelmeter.cpp\
|
gui/levelmeter.cpp\
|
||||||
|
gui/loggingdialog.cpp\
|
||||||
gui/pluginsdialog.cpp\
|
gui/pluginsdialog.cpp\
|
||||||
gui/audiodialog.cpp\
|
gui/audiodialog.cpp\
|
||||||
gui/presetitem.cpp\
|
gui/presetitem.cpp\
|
||||||
@ -106,6 +108,7 @@ HEADERS += mainwindow.h\
|
|||||||
gui/glspectrumgui.h\
|
gui/glspectrumgui.h\
|
||||||
gui/indicator.h\
|
gui/indicator.h\
|
||||||
gui/levelmeter.h\
|
gui/levelmeter.h\
|
||||||
|
gui/loggingdialog.h\
|
||||||
gui/physicalunit.h\
|
gui/physicalunit.h\
|
||||||
gui/pluginsdialog.h\
|
gui/pluginsdialog.h\
|
||||||
gui/presetitem.h\
|
gui/presetitem.h\
|
||||||
@ -135,11 +138,13 @@ FORMS += mainwindow.ui\
|
|||||||
gui/samplingdevicecontrol.ui\
|
gui/samplingdevicecontrol.ui\
|
||||||
gui/samplingdevicedialog.ui\
|
gui/samplingdevicedialog.ui\
|
||||||
gui/myposdialog.ui\
|
gui/myposdialog.ui\
|
||||||
|
gui/loggingdialog.ui\
|
||||||
gui/glspectrumgui.ui\
|
gui/glspectrumgui.ui\
|
||||||
gui/transverterdialog.ui\
|
gui/transverterdialog.ui\
|
||||||
mainwindow.ui
|
mainwindow.ui
|
||||||
|
|
||||||
LIBS += -L../sdrbase/$${build_subdir} -lsdrbase
|
LIBS += -L../sdrbase/$${build_subdir} -lsdrbase
|
||||||
|
LIBS += -L../logging/$${build_subdir} -llogging
|
||||||
|
|
||||||
RESOURCES = resources/res.qrc
|
RESOURCES = resources/res.qrc
|
||||||
|
|
||||||
|
@ -7,11 +7,12 @@ SET libzlib1dir="D:\softs\zlib-1.2.5"
|
|||||||
copy app\%1\sdrangel.exe %2
|
copy app\%1\sdrangel.exe %2
|
||||||
copy sdrbase\%1\sdrbase.dll %2
|
copy sdrbase\%1\sdrbase.dll %2
|
||||||
copy sdrgui\%1\sdrgui.dll %2
|
copy sdrgui\%1\sdrgui.dll %2
|
||||||
copy devices\%1\devices.dll %2
|
copy devices\%1\devices.dll %2
|
||||||
copy mbelib\%1\mbelib.dll %2
|
copy mbelib\%1\mbelib.dll %2
|
||||||
copy dsdcc\%1\dsdcc.dll %2
|
copy dsdcc\%1\dsdcc.dll %2
|
||||||
copy serialdv\%1\serialdv.dll %2
|
copy serialdv\%1\serialdv.dll %2
|
||||||
copy httpserver\%1\httpserver.dll %2
|
copy httpserver\%1\httpserver.dll %2
|
||||||
|
copy logging\%1\logging.dll %2
|
||||||
copy libhackrf\%1\libhackrf.dll %2
|
copy libhackrf\%1\libhackrf.dll %2
|
||||||
copy librtlsdr\%1\librtlsdr.dll %2
|
copy librtlsdr\%1\librtlsdr.dll %2
|
||||||
copy libairspy\%1\libairspy.dll %2
|
copy libairspy\%1\libairspy.dll %2
|
||||||
|
@ -32,6 +32,7 @@ copy dsdcc\%1\dsdcc.dll %2
|
|||||||
copy serialdv\%1\serialdv.dll %2
|
copy serialdv\%1\serialdv.dll %2
|
||||||
copy nanomsg\%1\nanomsg.dll %2
|
copy nanomsg\%1\nanomsg.dll %2
|
||||||
copy httpserver\%1\httpserver.dll %2
|
copy httpserver\%1\httpserver.dll %2
|
||||||
|
copy logging\%1\logging.dll %2
|
||||||
copy libhackrf\%1\libhackrf.dll %2
|
copy libhackrf\%1\libhackrf.dll %2
|
||||||
copy librtlsdr\%1\librtlsdr.dll %2
|
copy librtlsdr\%1\librtlsdr.dll %2
|
||||||
copy libairspy\%1\libairspy.dll %2
|
copy libairspy\%1\libairspy.dll %2
|
||||||
|
Loading…
Reference in New Issue
Block a user