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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
# This is part of TeXworks, an environment for working with TeX documents
# Copyright (C) 2007-08 Jonathan Kew
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# For links to further information, or to contact the author,
# see <http://texworks.org/>.
TEMPLATE = app
DEPENDPATH += ./src
INCLUDEPATH += ./src
MOC_DIR = ./moc
OBJECTS_DIR = ./obj
UI_DIR = ./ui
RCC_DIR = ./rcc
# comment this out if poppler's xpdf headers are not available on the build system
QMAKE_CXXFLAGS += -DHAVE_POPPLER_XPDF_HEADERS
unix:!macx {
TARGET = texworks
} else {
TARGET = TeXworks
}
QT += xml
CONFIG += rtti
unix {
system(./getDefaultBinPaths.sh):warning("Unable to determine TeX path, guessing defaults")
}
macx {
INCLUDEPATH += /usr/local/include/poppler
INCLUDEPATH += /usr/local/include/poppler/qt4
INCLUDEPATH += /usr/local/include/hunspell
LIBS += -L/usr/local/lib
LIBS += -lpoppler
LIBS += -lpoppler-qt4
LIBS += -lhunspell-1.2
QMAKE_INFO_PLIST = TeXworks.plist
CONFIG += x86 ppc
ICON = TeXworks.icns
}
unix:!macx { # on Unix-ish platforms we rely on pkgconfig, and use dbus
QT += dbus
CONFIG += link_pkgconfig
PKGCONFIG += hunspell
PKGCONFIG += poppler-qt4
PKGCONFIG += dbus-1
# Enclose the path in \\\" (which later gets expanded to \", which in turn
# gets expanded to " in the c++ code)
QMAKE_CXXFLAGS += -DTW_HELPPATH=\\\"/usr/local/share/texworks-help\\\"
}
linux-g++ {
# Qt/dbus config on Debian is broken, hence the lines below
LIBS += -lQtDBus
INCLUDEPATH += /usr/include/qt4/QtDBus
}
openbsd-g++ {
# Same bug exists in OpenBSD/qt4
LIBS += -lQtDBus
INCLUDEPATH += /usr/local/include/X11/qt4/QtDBus
}
win32 {
QTPLUGIN += qjpeg
# paths here are specific to my setup
INCLUDEPATH += c:/MinGW514/local/include
INCLUDEPATH += c:/MinGW514/local/include/poppler
INCLUDEPATH += c:/MinGW514/local/include/poppler/qt4
INCLUDEPATH += c:/MinGW514/local/include/hunspell
LIBS += -Lc:/MinGW514/local/lib
LIBS += -lpoppler-qt4
LIBS += -lpoppler
LIBS += -lfreetype
LIBS += -lhunspell-1.2
LIBS += -lz
LIBS += -lgdi32
RC_FILE = res/TeXworks.rc
}
# Input
HEADERS += src/TWApp.h \
src/TWUtils.h \
src/TeXDocument.h \
src/CompletingEdit.h \
src/TeXHighlighter.h \
src/TeXDocks.h \
src/PDFDocument.h \
src/PDFDocks.h \
src/FindDialog.h \
src/PrefsDialog.h \
src/TemplateDialog.h \
src/HardWrapDialog.h \
src/ConfirmDelete.h \
src/TWVersion.h \
src/SvnRev.h \
src/synctex_parser.h \
src/synctex_parser_utils.h
FORMS += src/TeXDocument.ui \
src/PDFDocument.ui \
src/Find.ui \
src/PDFFind.ui \
src/Replace.ui \
src/SearchResults.ui \
src/PrefsDialog.ui \
src/ToolConfig.ui \
src/TemplateDialog.ui \
src/HardWrapDialog.ui \
src/ConfirmDelete.ui
SOURCES += src/main.cpp \
src/TWApp.cpp \
src/TWUtils.cpp \
src/TeXDocument.cpp \
src/CompletingEdit.cpp \
src/TeXHighlighter.cpp \
src/TeXDocks.cpp \
src/PDFDocument.cpp \
src/PDFDocks.cpp \
src/FindDialog.cpp \
src/PrefsDialog.cpp \
src/TemplateDialog.cpp \
src/HardWrapDialog.cpp \
src/ConfirmDelete.cpp \
src/synctex_parser.c \
src/synctex_parser_utils.c
RESOURCES += res/resources.qrc \
res/resfiles.qrc
TRANSLATIONS += trans/TeXworks_ar.ts \
trans/TeXworks_ca.ts \
trans/TeXworks_cs.ts \
trans/TeXworks_de.ts \
trans/TeXworks_es.ts \
trans/TeXworks_fa.ts \
trans/TeXworks_fr.ts \
trans/TeXworks_it.ts \
trans/TeXworks_ja.ts \
trans/TeXworks_ko.ts \
trans/TeXworks_nl.ts \
trans/TeXworks_pl.ts \
trans/TeXworks_pt_BR.ts \
trans/TeXworks_ru.ts \
trans/TeXworks_sl.ts \
trans/TeXworks_tr.ts \
trans/TeXworks_zh_CN.ts
|