Я пытаюсь собрать QMPwidget. Это виджет, который позволяет разработчикам Qt встраивать экземпляр MPlayer в свое приложение для удобного воспроизведения видео. Я скачал исходные файлы с здесь . Я выбрал файл «Снимок главной ветки» из загрузок. Когда я пытаюсь собрать его с помощью Qt Creator, я получаю следующие ошибки:
qmpwidget.cpp:147: error: 'glClearDepth' was not declared in this scope
qmpwidget.cpp:158: error: 'glLoadIdentity' was not declared in this scope
qmpwidget.cpp:166: error: 'GL_QUADS' was not declared in this scope
qmpwidget.cpp:166: error: 'glBegin' was not declared in this scope
qmpwidget.cpp:167: error: 'glTexCoord2f' was not declared in this scope
qmpwidget.cpp:167: error: 'glVertex2f' was not declared in this scope
qmpwidget.cpp:171: error: 'glEnd' was not declared in this scope
Вот файлы pro и pri проекта:
src.pro:
TEMPLATE = lib
DESTDIR = ..
TARGET = qmpwidget
QT += network opengl
CONFIG += staticlib
# Optional features
QT += opengl
CONFIG += pipemode
include(qmpwidget.pri)
qmpwidget.pri
HEADERS += \
qmpwidget.h
SOURCES += \
qmpwidget.cpp
!win32:pipemode: {
DEFINES += QMP_USE_YUVPIPE
HEADERS += qmpyuvreader.h
}