Skip to content

Commit

Permalink
Unix|qmake: Added build option for using ccache
Browse files Browse the repository at this point in the history
“deng_ccache” now makes the build use ccache for faster compilation.
  • Loading branch information
skyjake committed Nov 21, 2013
1 parent 2a120a3 commit af74826
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions doomsday/config.pri
Expand Up @@ -147,6 +147,13 @@ else:macx: include(config_macx.pri)

# Apply deng_* Configuration -------------------------------------------------

unix:deng_ccache {
# ccache can be used to speed up recompilation.
QMAKE_CC = ccache $$QMAKE_CC -Qunused-arguments
QMAKE_CXX = ccache $$QMAKE_CXX -Qunused-arguments
QMAKE_CXXFLAGS_WARN_ON += -Wno-self-assign
}

deng_nofixedasm {
DEFINES += DENG_NO_FIXED_ASM
}
Expand Down

0 comments on commit af74826

Please sign in to comment.