added QxtSdlWidget to the build and export system

This commit is contained in:
Arvid E. Picciani 2007-01-08 21:21:20 +00:00 committed by Arvid Ephraim Picciani
parent 8ecbbd027f
commit 6548a0105c
2 changed files with 10 additions and 3 deletions

View File

@ -7,11 +7,12 @@ released under the Terms of LGPL (see the LICENSE file)
#ifndef QXTSDLWIDGET_H
#define QXTSDLWIDGET_H
#include <QxtDefines.h>
#include <QWidget>
struct SDL_Surface;
class QxtSdlWidget : public QWidget
class QXT_DLLEXPORT QxtSdlWidget : public QWidget
{
public:
QxtSdlWidget(QWidget *parent = 0);

View File

@ -7,15 +7,21 @@ TARGET = QxtMedia
DEPENDPATH += .
INCLUDEPATH += . ..
QT = core
QT = core gui
QXT_MEDIA += QxtAVFile
QXT_MEDIA += QxtAVFile
QXT_HEADERS_QxtAVFile = QxtAVFile.h
QXT_SOURCES_QxtAVFile = QxtAVFile.cpp
QXT_STABILITY_QxtAVFile = +linux-g++
QXT_MEDIA += QxtSdlWidget
QXT_HEADERS_QxtSdlWidget = QxtSdlWidget.h
QXT_SOURCES_QxtSdlWidget = QxtSdlWidget.cpp
QXT_STABILITY_QxtSdlWidgt = +linux-g++
include (../parts.pri)