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
|
load(lomiri_common)
# Enables the copy of private and public headers to an include directory at the
# root of the sources before compilation and the copy of the compiled libraries
# after compilation. Must be set before loading qt_module.
CONFIG += git_build
# Make sure our public headers compile with extra warnings and strict Qt
# options. Must be set before loading qt_module. Requires qt_module_headers to
# be loaded after qt_module.
#CONFIG += headersclean
load(qt_module)
load(qt_module_headers)
# Disable CMake config file creation. Must be set after loading qt_module.
CONFIG -= create_cmake
CONFIG += dll
# warnings_are_errors depending on the compiler version, sometimes it doesn't
# add the required flags (for instance for recent clang version on old Qt).
warnings_are_errors:!contains(QMAKE_CXXFLAGS_WARN_ON, -Werror){
QMAKE_CXXFLAGS_WARN_ON += -Werror
}
|