summaryrefslogtreecommitdiffstats
path: root/tools/qmake/mkspecs/features/default_pre.prf
blob: 4de44951172c8e53c9c765aa15cf295c9a9e9603 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Resolve root directories for sources
QTWEBENGINE_ROOT = $$replace(PWD, /tools/qmake/mkspecs/features$,)

QTWEBENGINEPROCESS_NAME = QtWebEngineProcess

# Tweaks that shouldn't affect our examples
!contains(_PRO_FILE_PWD_, $$QTWEBENGINE_ROOT/examples) {
    # Used for our export macros
    DEFINES += BUILDING_CHROMIUM
    # We have to disable RTTI for now since that's how chromium builds on linux
    unix:QMAKE_CXXFLAGS += -fno-rtti
}
# Location of sync.profile
MODULE_BASE_DIR = $$QTWEBENGINE_ROOT


load(functions)

# Call the original default_pre.
load(default_pre)