summaryrefslogtreecommitdiffstats
path: root/lib/lib.pro
blob: e79923236e5f6c517fac23057896a9d3b550e8bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# This is a dummy .pro file used to extract some aspects of the used configuration and feed them to gyp
# We want the gyp generation step to happen after all the other config steps. For that we need to prepend
# our gypi_gen.prf feature to the CONFIG variable since it is processed backwards
CONFIG = gypi_gen $$CONFIG

TEMPLATE = lib

TARGET = blinq

# Defining keywords such as 'signal' clashes with the chromium code base.
DEFINES += QT_NO_KEYWORDS

QT += gui-private

SOURCES = \
        blinqpage.cpp

HEADERS = \
        blinqpage.h