Browse Source

Merge pull request #1414 from nonlinear-chaos-order-etc/openssl

qt: fixed logging to window in release builds
pull/1420/head
orignal 5 years ago committed by GitHub
parent
commit
2334c56a96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      qt/i2pd_qt/i2pd_qt.pro

9
qt/i2pd_qt/i2pd_qt.pro

@ -6,11 +6,16 @@ TARGET = i2pd_qt @@ -6,11 +6,16 @@ TARGET = i2pd_qt
TEMPLATE = app
QMAKE_CXXFLAGS *= -std=c++11 -Wno-unused-parameter -Wno-maybe-uninitialized
# For now, disable UPnP which currently crashes on Stop() -- https://github.com/PurpleI2P/i2pd/issues/1387
# For now, disable UPnP which currently crashes in UPnP::Stop() -- https://github.com/PurpleI2P/i2pd/issues/1387
#DEFINES += USE_UPNP
DEFINES -= USE_UPNP
debug: DEFINES += DEBUG_WITH_DEFAULT_LOGGING
CONFIG(debug, debug|release) {
message(Debug build)
DEFINES += DEBUG_WITH_DEFAULT_LOGGING
} else {
message(Release build)
}
SOURCES += DaemonQT.cpp mainwindow.cpp \
../../libi2pd/api.cpp \

Loading…
Cancel
Save