1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
From b94d0136b68b50e97f00c8024df1ba27e8438572 Mon Sep 17 00:00:00 2001
From: Olivier Goffart <olivier.goffart@nokia.com>
Date: Tue, 14 Dec 2010 11:57:13 +0100
Subject: [PATCH] Some support for Qt3Support
---
qt3support/modules/qt_qt3support.pri | 9 +++++++++
qt3support/src/qt3support/qt3support.pro | 7 ++++++-
qt3support/sync.profile | 15 +++++++++++++++
3 files changed, 30 insertions(+), 1 deletions(-)
create mode 100644 qt3support/modules/qt_qt3support.pri
create mode 100644 qt3support/sync.profile
diff --git a/qt3support/modules/qt_qt3support.pri b/qt3support/modules/qt_qt3support.pri
new file mode 100644
index 0000000..4b8c04c
--- /dev/null
+++ b/qt3support/modules/qt_qt3support.pri
@@ -0,0 +1,9 @@
+QT_QT3SUPPORT_VERSION = $$QT_VERSION
+QT_QT3SUPPORT_MAJOR_VERSION = $$QT_MAJOR_VERSION
+QT_QT3SUPPORT_MINOR_VERSION = $$QT_MINOR_VERSION
+QT_QT3SUPPORT_PATCH_VERSION = $$QT_PATCH_VERSION
+
+QT.qt3support.name = Qt3Support
+QT.qt3support.includes = $$QT_MODULE_INCLUDE_BASE $$QT_MODULE_INCLUDE_BASE/Qt3Support
+QT.qt3support.libs = $$QT_MODULE_LIB_BASE
+QT.qt3support.depends = core gui
diff --git a/qt3support/src/qt3support/qt3support.pro b/qt3support/src/qt3support/qt3support.pro
index a30117c..37900a2 100644
--- a/qt3support/src/qt3support/qt3support.pro
+++ b/qt3support/src/qt3support/qt3support.pro
@@ -1,3 +1,5 @@
+load(qt_module)
+
TARGET = Qt3Support
QPRO_PWD = $$PWD
QT = core gui network sql
@@ -5,7 +7,7 @@ DEFINES += QT_BUILD_COMPAT_LIB
DEFINES += QT_NO_USING_NAMESPACE
win32-msvc*|win32-icc:QMAKE_LFLAGS += /BASE:0x60000000
-include(../qbase.pri)
+include($$QT_SOURCE_TREE/src/qbase.pri)
DEFINES -= QT_ASCII_CAST_WARNINGS
PRECOMPILED_HEADER = other/qt_compat_pch.h
@@ -37,3 +39,6 @@ MOCDIR = .moc
CONFIG -= separate_debug_info
CONFIG += no_debug_info
+INCLUDEPATH += $$OUT_PWD/../../include \
+ $$OUT_PWD/../../include/Qt3Support \
+ $$OUT_PWD/../../include/Qt3Support/private
diff --git a/qt3support/sync.profile b/qt3support/sync.profile
new file mode 100644
index 0000000..af98983
--- /dev/null
+++ b/qt3support/sync.profile
@@ -0,0 +1,15 @@
+%modules = ( # path to module name map
+ "Qt3Support" => "$basedir/src/qt3support",
+);
+%moduleheaders = ( # restrict the module headers to those found in relative path
+);
+%classnames = (
+);
+%mastercontent = (
+ "core" => "#include <QtCore/QtCore>\n",
+ "gui" => "#include <QtGui/QtGui>\n",
+);
+
+%modulepris = (
+ "Qt3Support" => "$basedir/modules/qt_qt3support.pri",
+);
--
1.7.3.2.343.g7d43d
|