From 5d22e3cbdd251819a4d2d07b9a12994d5aef778d Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Fri, 29 Aug 2008 21:08:38 +0000 Subject: Add wpseditor, the Google Summer of Code 2008 project of Rostislav Chekan. Closes FS#9327 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18362 a1c6a512-1295-4272-9138-f99709370657 --- .../gui/src/QPropertyEditor/QPropertyEditor.pro | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 utils/wpseditor/gui/src/QPropertyEditor/QPropertyEditor.pro (limited to 'utils/wpseditor/gui/src/QPropertyEditor/QPropertyEditor.pro') diff --git a/utils/wpseditor/gui/src/QPropertyEditor/QPropertyEditor.pro b/utils/wpseditor/gui/src/QPropertyEditor/QPropertyEditor.pro new file mode 100644 index 0000000000..85fd29ee2c --- /dev/null +++ b/utils/wpseditor/gui/src/QPropertyEditor/QPropertyEditor.pro @@ -0,0 +1,26 @@ +TEMPLATE = lib +CONFIG += staticlib debug_and_release +SOURCES = ColorCombo.cpp \ + Property.cpp \ + QPropertyEditorWidget.cpp \ + QPropertyModel.cpp \ + QVariantDelegate.cpp +HEADERS = ColorCombo.h \ + Property.h \ + QPropertyEditorWidget.h \ + QPropertyModel.h \ + QVariantDelegate.h +INCLUDEPATH += . +DESTDIR = ../../lib +UI_DIR = . +CONFIG(debug, debug|release) { + TARGET = QPropertyEditord + OBJECTS_DIR = ../../build/QPropertyEditor/debug + MOC_DIR = ../../build/QPropertyEditor/debug +} +CONFIG(release, debug|release) { + TARGET = QPropertyEditor + OBJECTS_DIR = ../../build/QPropertyEditor/release + MOC_DIR = ../../build/QPropertyEditor/release + DEFINES += QT_NO_DEBUG +} -- cgit v1.2.3