mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-14 08:01:38 +01:00
use ccache if present
This commit is contained in:
parent
5ea1a799ec
commit
e6564c679c
1 changed files with 4 additions and 0 deletions
|
@ -35,6 +35,10 @@ endif
|
|||
BUILD_PLAT_DIR = $(BUILD_DIR)/$(PLATFORM)
|
||||
|
||||
# CC = llvm-gcc
|
||||
ifneq ($(shell which ccache),)
|
||||
CC := ccache $(CC)
|
||||
CXX := ccache $(CXX)
|
||||
endif
|
||||
|
||||
DO_CURSES = -DPLATFORM_NCURSES
|
||||
DO_CURSES += -DUSE_GLIBLOOP
|
||||
|
|
Loading…
Reference in a new issue