1 # This is a qmake project file, provided as an example on how to use qmake with QtGstreamer.
2 # There is nothing special about it, the only difference with a normal qmake project
3 # is that you specify INCLUDEPATH and LIBS to point to QtGstreamer. Unfortunately, qmake
4 # does not provide features like searching for libraries, so both the include path and the
5 # library path have to be typed manually here. It is recommended to use cmake instead,
6 # unless you have a reason to use qmake.
11 # Change this to point to the location where the QtGstreamer headers are installed
12 INCLUDEPATH += /usr/local/include/QtGstreamer
14 # Change this to point to the location where the QtGstreamer library is installed
15 LIBS += -L/usr/local/lib -lQtGstreamer
17 # Recommended if you are using g++ 4.3 or later. Must be removed for other compilers.
18 QMAKE_CXXFLAGS += -std=c++0x
20 # Recommended, to avoid possible issues with the "emit" keyword
21 DEFINES += QT_NO_KEYWORDS
23 # This example has no GUI