-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathplayer.pro
executable file
·57 lines (51 loc) · 1.25 KB
/
player.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
#-------------------------------------------------
#
# Project created by QtCreator 2015-08-02T01:57:21
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
QMAKE_CXXFLAGS+= -std=c++0x -pthread
QMAKE_LFLAGS += -std=c++0x -pthread
TARGET = player
TEMPLATE = app
LIBS += -lvlc -lglut -lGL -lGLU -lGLEW
QT += opengl
SOURCES += \
core/main.cpp \
core/Instance.cpp \
core/Mediaplayer.cpp \
core/Interface.cpp \
core/Player.cpp \
core/Video.cpp \
core/Media.cpp \
core/Audio.cpp \
widgets/VideoWindow.cpp \
core/DelegateControl.cpp \
core/Filters.cpp \
core/EventsEmitter.cpp \
widgets/ControlPanel.cpp \
core/VideoShow.cpp \
core/ViewThread.cpp \
core/Anaglyph.cpp
HEADERS += \
core/Instance.h \
core/Mediaplayer.h \
core/Interface.h \
core/Player.h \
core/Video.h \
core/Media.h \
core/Audio.h \
widgets/VideoSlider.h \
widgets/VideoWindow.h \
core/DelegateControl.h \
core/Filters.h \
core/EventsEmitter.h \
core/Options.h \
widgets/ControlPanel.h \
core/VideoShow.h \
core/ViewThread.h \
core/Anaglyph.h \
core/Shaders.h
FORMS += forms/player.ui
RESOURCES += \