mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
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:
parent
ef8aedd75a
commit
23ae15dbea
1 changed files with 17 additions and 0 deletions
|
|
@ -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 \
|
SOURCES += rbutilqt.cpp \
|
||||||
main.cpp \
|
main.cpp \
|
||||||
install.cpp \
|
install.cpp \
|
||||||
|
|
@ -50,6 +64,9 @@ HEADERS += rbutilqt.h \
|
||||||
irivertools/checksums.h \
|
irivertools/checksums.h \
|
||||||
browsedirtree.h
|
browsedirtree.h
|
||||||
|
|
||||||
|
# Needed by QT on Win
|
||||||
|
INCLUDEPATH = . irivertools zip zlib ../ipodpatcher ../sansapatcher
|
||||||
|
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
CONFIG += release \
|
CONFIG += release \
|
||||||
warn_on \
|
warn_on \
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue