Improve the build system; add new features and examples:
[qtgstreamer:qtgstreamer.git] / examples / echo / echo.pro
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.
7
8 TEMPLATE = app
9 TARGET = echo
10
11 # Change this to point to the location where the QtGstreamer headers are installed
12 INCLUDEPATH += /usr/local/include/QtGstreamer
13
14 # Change this to point to the location where the QtGstreamer library is installed
15 LIBS += -L/usr/local/lib -lQtGstreamer
16
17 # Recommended if you are using g++ 4.3 or later. Must be removed for other compilers.
18 QMAKE_CXXFLAGS += -std=c++0x
19
20 # Recommended, to avoid possible issues with the "emit" keyword
21 DEFINES += QT_NO_KEYWORDS
22
23 # This example has no GUI
24 QT -= gui
25
26 # Input
27 SOURCES += main.cpp