summaryrefslogtreecommitdiffstats
path: root/shared/shared.pro
blob: 3826bb5eda33337054d7b0c6b82f41ec80949008 (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
# 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 gyp_generator.prf feature to the CONFIG variable since it is processed backwards
CONFIG = gyp_generator $$CONFIG
GYPINCLUDES += ../qtwebengine.gypi

TEMPLATE = lib
CONFIG += static

TARGET = qtwebengine_shared

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

# We need a way to tap into gyp´s Debug vs. Release configuration
PER_CONFIG_DEFINES = QTWEBENGINEPROCESS_PATH=\\\"$$getOutDir()/%config/$$QTWEBENGINEPROCESS_NAME\\\"

# Keep Skia happy
CONFIG(release, debug|release): DEFINES += NDEBUG

QT += gui

SOURCES = \
        resource_bundle_qt.cpp \
        shared_globals.cpp

HEADERS = \
        shared_globals.h