Disable requirement of using ccache.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2015-05-16 17:14:35 +03:00
parent fb054879e0
commit f92df37f12

View File

@ -70,6 +70,9 @@ defineReplace(set_PCH){
}
defineReplace(enable_ccache){
no_ccache{ # For enable run qmake with CONFIG+=no_ccache
# do nothing
} else {
# ccache support only Unix systems.
unix:{
# This need for turn on ccache.
@ -88,6 +91,7 @@ defineReplace(enable_ccache){
export(QMAKE_CXX) # export value to global variable.
}
}
}
return(true)
}