blob: 74cc60837d79d5ad11836e28dd532ef6e3debd54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
TARGET = glx
QT = core
!contains(QT_CONFIG, opengl): error("glx support requires Qt configured with OpenGL")
!contains(QT_CONFIG, no-pkg-config) {
CONFIG += link_pkgconfig
PKGCONFIG += x11 gl
} else {
LIBS += -lX11 -lGL
}
# Input
SOURCES += main.cpp
|