forked from KLAU542/gl-presenter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgl-presenter.pro
59 lines (53 loc) · 1.6 KB
/
gl-presenter.pro
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
# This file is part of GL-Presenter.
# Copyright (C) 2010 Klaus Denker <[email protected]>
#
# GL-Presenter 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 3 of the License, or
# (at your option) any later version.
#
# GL-Presenter 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 GL-Presenter. If not, see <http://www.gnu.org/licenses/>.
# QMAKE_CFLAGS_DEBUG += -pg
# QMAKE_CXXFLAGS_DEBUG += -pg
# QMAKE_LFLAGS_DEBUG += -pg
win32 {
LIBS += C:\\ProgramData\\KDE\\lib\\libpoppler-qt5.dll.a
}
unix {
LIBS += -lpoppler-qt5 -lGLU
}
INCLUDEPATH += include
HEADERS += include/Animator.h \
include/GeneralWidget.h \
include/PresenterWidget.h \
include/BeamerWidget.h \
include/CommentLoader.h \
include/PDFThread.h
SOURCES += src/gl-presenter.cpp \
src/Animator.cpp \
src/GeneralWidget.cpp \
src/PresenterWidget.cpp \
src/BeamerWidget.cpp \
src/CommentLoader.cpp \
src/PDFThread.cpp
RESOURCES += gl-presenter.qrc
QT += opengl
OTHER_FILES += DejaVuSans.ttf
binary.files = gl-presenter
win32 {
binary.path = $$[QT_INSTALL_BINS]
}
unix {
binary.path = $$[PREFIX]/usr/bin/
}
INSTALLS += binary
#CONFIG += debug
exists( gl-presenter_paths.pri ) {
include (gl-presenter_paths.pri)
}