summaryrefslogtreecommitdiffstats
path: root/src/tools/qwebengine_convert_dict/qwebengine_convert_dict.pro
blob: 1781b843d180d5b46b36f25de6a12c96c880d156 (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
option(host_build)

# Look for linking information produced by gyp for our target according to core_generated.gyp
!include($$OUT_PWD/../../core/$$getConfigDir()/QtWebEngineCore_linking.pri) {
    error("Could not find the linking information that gyp should have generated.")
}
# remove object files from linking information
OBJECTS =

# Fixme: -Werror=unused-parameter in core
QMAKE_CXXFLAGS_WARN_ON =

# Disable MSVC2015 warning C4577 ('noexcept' used with no exception handling mode specified)
win32: QMAKE_CXXFLAGS_WARN_ON = -wd4577

# Issue with some template compliation, smb smart should look at it
win32: DEFINES += NOMINMAX

CHROMIUM_SRC_DIR = $$QTWEBENGINE_ROOT/$$getChromiumSrcDir()
INCLUDEPATH += $$CHROMIUM_SRC_DIR

SOURCES += \
    main.cpp

load(qt_tool)