mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 08:51:08 +00:00
366bba0227
This is a follow-up commit to "Increase default warning level", which overrides Genode's new default warning level for targets contained in higher-level repositories. By explicitly whitelisting all those targets, we can selectively adjust them to the new strictness over time - by looking out for 'CC_CXX_WARN_STRICT' in the target description files. Issue #465
33 lines
1001 B
Makefile
33 lines
1001 B
Makefile
include $(REP_DIR)/lib/import/import-qt5_network.mk
|
|
|
|
SHARED_LIB = yes
|
|
|
|
# use default warning level to avoid noise when compiling contrib code
|
|
CC_WARN =
|
|
|
|
include $(REP_DIR)/lib/mk/qt5_network_generated.inc
|
|
|
|
# remove unneeded files to prevent moc warnings
|
|
COMPILER_MOC_HEADER_MAKE_ALL_FILES_FILTER_OUT = \
|
|
moc_qbearerengine_p.cpp \
|
|
moc_qbearerplugin_p.cpp \
|
|
moc_qnetworkaccessdebugpipebackend_p.cpp \
|
|
moc_qnetworkconfigmanager.cpp \
|
|
moc_qnetworkconfigmanager_p.cpp \
|
|
moc_qnetworksession.cpp \
|
|
moc_qnetworksession_p.cpp \
|
|
moc_qsslsocket_openssl_p.cpp
|
|
|
|
COMPILER_MOC_SOURCE_MAKE_ALL_FILES_FILTER_OUT = \
|
|
|
|
include $(REP_DIR)/lib/mk/qt5.inc
|
|
|
|
INC_DIR += $(QT5_CONTRIB_DIR)/qtbase/include/QtNetwork/$(QT_VERSION) \
|
|
$(QT5_CONTRIB_DIR)/qtbase/include/QtNetwork/$(QT_VERSION)/QtNetwork \
|
|
$(QT5_CONTRIB_DIR)/qtbase/include/QtCore/$(QT_VERSION) \
|
|
$(QT5_CONTRIB_DIR)/qtbase/include/QtCore/$(QT_VERSION)/QtCore
|
|
|
|
LIBS += qt5_core zlib libc libssl
|
|
|
|
CC_CXX_WARN_STRICT =
|