blob: 2845196476bcd78e9ca15580b51669f6639bd8f5 (
plain)
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
|
diff -r 9450ca28545a spellerdialog.h
--- a/spellerdialog.h Fri Jun 27 20:29:16 2008 +0200
+++ b/spellerdialog.h Fri Jun 27 20:39:29 2008 +0200
@@ -13,7 +13,7 @@
#include "ui_spellerdialog.h"
#include "latexeditor.h"
-#include "hunspell/hunspell.hxx"
+#include <hunspell.hxx>
#include <QTextCursor>
diff -r 9450ca28545a texmaker.pro
--- a/texmaker.pro Fri Jun 27 20:29:16 2008 +0200
+++ b/texmaker.pro Fri Jun 27 20:39:29 2008 +0200
@@ -1,7 +1,8 @@
TEMPLATE = app
LANGUAGE = C++
TARGET = texmaker
-CONFIG += qt warn_off release
+CONFIG += qt warn_off release link_pkgconfig
+PKGCONFIG = hunspell
###############################
HEADERS += texmaker.h \
symbollistwidget.h \
@@ -32,22 +33,7 @@
webpublishdialog.h \
spellerdialog.h \
pstrickslistwidget.h \
- blockdata.h \
- hunspell/affentry.hxx \
- hunspell/affixmgr.hxx \
- hunspell/atypes.hxx \
- hunspell/baseaffix.hxx \
- hunspell/csutil.hxx \
- hunspell/dictmgr.hxx \
- hunspell/hashmgr.hxx \
- hunspell/htypes.hxx \
- hunspell/hunspell.hxx \
- hunspell/hunspell.h \
- hunspell/langnum.hxx \
- hunspell/license.hunspell \
- hunspell/phonet.hxx \
- hunspell/suggestmgr.hxx \
- hunspell/license.myspell
+ blockdata.h
SOURCES += main.cpp \
texmaker.cpp \
symbollistwidget.cpp \
@@ -77,16 +63,7 @@
aboutdialog.cpp \
webpublishdialog.cpp \
spellerdialog.cpp \
- pstrickslistwidget.cpp \
- hunspell/affentry.cxx \
- hunspell/affixmgr.cxx \
- hunspell/csutil.cxx \
- hunspell/dictmgr.cxx \
- hunspell/hashmgr.cxx \
- hunspell/hunspell.cxx \
- hunspell/phonet.cxx \
- hunspell/suggestmgr.cxx \
- hunspell/utf_info.cxx
+ pstrickslistwidget.cpp
RESOURCES += texmaker.qrc
FORMS += findwidget.ui\
gotolinedialog.ui \
|