summaryrefslogtreecommitdiffstats
path: root/XineramaBarriers.pro
blob: 0ecd4ccfec515b6b422272b606aae349ced75ebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

# XineramaBarriers
# ----------
# Copyright (C) 2011, Timur Kristóf
#
# This X client application will create pointer barriers
# based on the Xinerama information of your current driver.
# Only works with XFixes v5 or higher and the Xorg server
# which has the pointer barriers patch.
# ----------
# Licensed under the terms of the GPL
# ----------

TEMPLATE = app
TARGET = XineramaBarriers

CONFIG += console link_pkgconfig
CONFIG -= QT app_bundle
PKGCONFIG += x11 xinerama xfixes

SOURCES += main.cpp \
    barriermanager.cpp

INSTALLS += target
target.path = /usr/bin

HEADERS += \
    barriermanager.h