Add ccache and build paths to the project file

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14236 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Keevil 2007-08-07 18:05:48 +00:00
parent ef8aedd75a
commit 23ae15dbea

View file

@ -1,3 +1,17 @@
unix:!mac {
CCACHE = $$system(which ccache)
!isEmpty(CCACHE) {
message("using ccache")
QMAKE_CXX = ccache g++
QMAKE_CC = ccache gcc
}
}
OBJECTS_DIR = build/o
UI_DIR = build/ui
MOC_DIR = build/moc
RCC_DIR = build/rcc
SOURCES += rbutilqt.cpp \
main.cpp \
install.cpp \
@ -50,6 +64,9 @@ HEADERS += rbutilqt.h \
irivertools/checksums.h \
browsedirtree.h
# Needed by QT on Win
INCLUDEPATH = . irivertools zip zlib ../ipodpatcher ../sansapatcher
TEMPLATE = app
CONFIG += release \
warn_on \