diff options
| author | Robert Keevil <rkeevil+rockbox@gmail.com> | 2007-08-07 18:05:48 +0000 |
|---|---|---|
| committer | Robert Keevil <rkeevil+rockbox@gmail.com> | 2007-08-07 18:05:48 +0000 |
| commit | 23ae15dbea0d5f12858fdb55398be9fa5b257b85 (patch) | |
| tree | 8af0e7acb9aa304ddd00525166b197a100c29235 | |
| parent | ef8aedd75a380be4e5a5ea74eb983f2425d395e5 (diff) | |
| download | rockbox-23ae15dbea0d5f12858fdb55398be9fa5b257b85.zip rockbox-23ae15dbea0d5f12858fdb55398be9fa5b257b85.tar.gz rockbox-23ae15dbea0d5f12858fdb55398be9fa5b257b85.tar.bz2 rockbox-23ae15dbea0d5f12858fdb55398be9fa5b257b85.tar.xz | |
Add ccache and build paths to the project file
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14236 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | rbutil/rbutilqt/rbutilqt.pro | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/rbutilqt.pro b/rbutil/rbutilqt/rbutilqt.pro index 243498d..4fa90ff 100644 --- a/rbutil/rbutilqt/rbutilqt.pro +++ b/rbutil/rbutilqt/rbutilqt.pro @@ -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 \ |