diff options
author | Wolf Bergenheim <ext-wolf.2.bergenheim@nokia.com> | 2010-01-29 17:20:56 +0200 |
---|---|---|
committer | Wolf Bergenheim <ext-wolf.2.bergenheim@nokia.com> | 2010-01-29 17:20:56 +0200 |
commit | 0746bbd252fe13ce3c4ae523fc28b0cf27314c05 (patch) | |
tree | 323b3406c6f893f21c7c7820532c0df2a61881cc /libresourceqt.pro | |
parent | 27c45e867533ad43bc2b2e64fe577a503b2d05a8 (diff) | |
download | libresourceqt-0746bbd252fe13ce3c4ae523fc28b0cf27314c05.tar.gz |
Refactored Resource into multiple classes
Diffstat (limited to 'libresourceqt.pro')
-rw-r--r-- | libresourceqt.pro | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/libresourceqt.pro b/libresourceqt.pro index 125282d..e76299d 100644 --- a/libresourceqt.pro +++ b/libresourceqt.pro @@ -3,20 +3,23 @@ VERSION = 1.0.0 TARGET = resourceqt DESTDIR = build DEPENDPATH += include src -INCLUDEPATH += src include +INCLUDEPATH += src include ../libresource/src # Input -PUBLIC_HEADERS = include/resource.h +PUBLIC_HEADERS = include/resource.h include/resource-set.h include/resources.h -HEADERS += $$PUBLIC_HEADERS +HEADERS += $$PUBLIC_HEADERS src/resource-engine.h -SOURCES += src/resource.cpp +SOURCES += src/resource.cpp \ + src/resource-set.cpp \ + src/resource-engine.cpp \ + src/resources.cpp OBJECTS_DIR = build MOC_DIR = build CONFIG += qt link_pkgconfig dll -QT = core dbus +QT = core PKGCONFIG += dbus-1 # Install directives @@ -26,3 +29,4 @@ target.path = $$INSTALLBASE/lib headers.path = $$INSTALLBASE/include/resource/qt4 INSTALLS = target headers + |