mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Merge pull request #657 from PhenomRetroShare/Add_NoCppWarningFlag
Add no cpp #warning Config flag to better show other ones.
This commit is contained in:
commit
aa62136f17
@ -55,6 +55,10 @@ no_rs_gxs:CONFIG -= rs_gxs
|
||||
CONFIG *= no_rs_nodeprecatedwarning
|
||||
rs_nodeprecatedwarning:CONFIG -= no_rs_nodeprecatedwarning
|
||||
|
||||
# To disable Cpp #Warning append the following
|
||||
# assignation to qmake command line "CONFIG+=rs_nocppwarning"
|
||||
CONFIG *= no_rs_nocppwarning
|
||||
rs_nocppwarning:CONFIG -= no_rs_nocppwarning
|
||||
|
||||
unix {
|
||||
isEmpty(PREFIX) { PREFIX = "/usr" }
|
||||
@ -166,4 +170,10 @@ rs_nodeprecatedwarning {
|
||||
warning("QMAKE: You have disable deprecated warnings.")
|
||||
}
|
||||
|
||||
rs_nocppwarning {
|
||||
QMAKE_CXXFLAGS += -Wno-cpp
|
||||
DEFINES *= RS_NO_WARN_CPP
|
||||
warning("QMAKE: You have disable cpp warnings.")
|
||||
}
|
||||
|
||||
rs_gxs_mail:DEFINES *= RS_GXS_MAIL
|
||||
|
Loading…
Reference in New Issue
Block a user