File: GLInject.pro

package info (click to toggle)
simplescreenrecorder 0.4.4-7
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 6,812 kB
  • sloc: cpp: 15,398; ansic: 769; sh: 203; php: 137; xml: 45; makefile: 20
file content (24 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Don't try to compile this with qmake! This file is only meant for Qt Creator, not for actual compilation.

QT += core gui

TARGET = GLInject
TEMPLATE = app

QMAKE_CXXFLAGS += -std=c++0x
LIBS += -rt -ldl -lGL -lGLU -lX11 -lXfixes

SOURCES += \
	elfhacks.c \
	GLInject.cpp \
	GLXFrameGrabber.cpp \
	Hook.cpp \
	SSRVideoStreamWriter.cpp

HEADERS  += \
	elfhacks.h \
	GLInject.h \
	Global.h \
	GLXFrameGrabber.h \
	ShmStructs.h \
	SSRVideoStreamWriter.h