From 216c8f70c65d1a05f471c2cc7ead8a507a365530 Mon Sep 17 00:00:00 2001 From: Flavio Date: Mon, 28 Jan 2013 10:44:13 +0100 Subject: [PATCH] Disk cache in .pro --- minitube.pro | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/minitube.pro b/minitube.pro index e15b75b..836142d 100644 --- a/minitube.pro +++ b/minitube.pro @@ -1,4 +1,4 @@ -CONFIG += debug +CONFIG += release TEMPLATE = app VERSION = 2.0 DEFINES += APP_VERSION="$$VERSION" @@ -70,7 +70,8 @@ HEADERS += \ src/regionsview.h \ src/ytsinglevideosource.h \ src/sidebarheader.h \ - src/utils.h + src/utils.h \ + src/diskcache.h SOURCES += src/main.cpp \ src/searchlineedit.cpp \ src/urllineedit.cpp \ @@ -122,7 +123,8 @@ SOURCES += src/main.cpp \ src/regionsview.cpp \ src/ytsinglevideosource.cpp \ src/sidebarheader.cpp \ - src/utils.cpp + src/utils.cpp \ + src/diskcache.cpp RESOURCES += resources.qrc DESTDIR = build/target/ OBJECTS_DIR = build/obj/ -- 2.39.5