Since Q5.4 available support C++14. Some libraries still missed use.
--HG-- branch : develop
This commit is contained in:
parent
cbd991a8b0
commit
7caf42cf48
|
@ -15,9 +15,15 @@ TARGET = fervor
|
||||||
# We want to create a library
|
# We want to create a library
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
CONFIG += \
|
CONFIG += staticlib # Making static library
|
||||||
staticlib \# Making static library
|
|
||||||
c++11 # We use C++11 standard
|
# Since Q5.4 available support C++14
|
||||||
|
greaterThan(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 3) {
|
||||||
|
CONFIG += c++14
|
||||||
|
} else {
|
||||||
|
# We use C++11 standard
|
||||||
|
CONFIG += c++11
|
||||||
|
}
|
||||||
|
|
||||||
# Use out-of-source builds (shadow builds)
|
# Use out-of-source builds (shadow builds)
|
||||||
CONFIG -= debug_and_release debug_and_release_target
|
CONFIG -= debug_and_release debug_and_release_target
|
||||||
|
|
|
@ -19,9 +19,15 @@ TARGET = ifc # Internal Format Converter
|
||||||
# We want create library
|
# We want create library
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
CONFIG += \
|
CONFIG += staticlib # Making static library
|
||||||
staticlib \# Making static library
|
|
||||||
c++11 # We use C++11 standard
|
# Since Q5.4 available support C++14
|
||||||
|
greaterThan(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 3) {
|
||||||
|
CONFIG += c++14
|
||||||
|
} else {
|
||||||
|
# We use C++11 standard
|
||||||
|
CONFIG += c++11
|
||||||
|
}
|
||||||
|
|
||||||
# Use out-of-source builds (shadow builds)
|
# Use out-of-source builds (shadow builds)
|
||||||
CONFIG -= debug_and_release debug_and_release_target
|
CONFIG -= debug_and_release debug_and_release_target
|
||||||
|
|
|
@ -15,10 +15,9 @@ TARGET = vdxf
|
||||||
# We want create a library
|
# We want create a library
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
CONFIG += \
|
CONFIG += staticlib # Making static library
|
||||||
staticlib # Making static library
|
|
||||||
|
|
||||||
# Since Qt5.4 available support C++14
|
# Since Q5.4 available support C++14
|
||||||
greaterThan(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 3) {
|
greaterThan(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 3) {
|
||||||
CONFIG += c++14
|
CONFIG += c++14
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -19,9 +19,15 @@ TARGET = vformat
|
||||||
# We want create a library
|
# We want create a library
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
CONFIG += \
|
CONFIG += staticlib # Making static library
|
||||||
staticlib \# Making static library
|
|
||||||
c++11 # We use C++11 standard
|
# Since Q5.4 available support C++14
|
||||||
|
greaterThan(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 3) {
|
||||||
|
CONFIG += c++14
|
||||||
|
} else {
|
||||||
|
# We use C++11 standard
|
||||||
|
CONFIG += c++11
|
||||||
|
}
|
||||||
|
|
||||||
# Use out-of-source builds (shadow builds)
|
# Use out-of-source builds (shadow builds)
|
||||||
CONFIG -= debug_and_release debug_and_release_target
|
CONFIG -= debug_and_release debug_and_release_target
|
||||||
|
|
|
@ -15,9 +15,15 @@ TARGET = vgeometry
|
||||||
# We want create a library
|
# We want create a library
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
CONFIG += \
|
CONFIG += staticlib # Making static library
|
||||||
staticlib \# Making static library
|
|
||||||
c++11 # We use C++11 standard
|
# Since Q5.4 available support C++14
|
||||||
|
greaterThan(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 3) {
|
||||||
|
CONFIG += c++14
|
||||||
|
} else {
|
||||||
|
# We use C++11 standard
|
||||||
|
CONFIG += c++11
|
||||||
|
}
|
||||||
|
|
||||||
# Use out-of-source builds (shadow builds)
|
# Use out-of-source builds (shadow builds)
|
||||||
CONFIG -= debug_and_release debug_and_release_target
|
CONFIG -= debug_and_release debug_and_release_target
|
||||||
|
|
|
@ -15,9 +15,15 @@ TARGET = vlayout
|
||||||
# We want create library
|
# We want create library
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
CONFIG += \
|
CONFIG += staticlib # Making static library
|
||||||
staticlib \# Making static library
|
|
||||||
c++11 # We use C++11 standard
|
# Since Q5.4 available support C++14
|
||||||
|
greaterThan(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 3) {
|
||||||
|
CONFIG += c++14
|
||||||
|
} else {
|
||||||
|
# We use C++11 standard
|
||||||
|
CONFIG += c++11
|
||||||
|
}
|
||||||
|
|
||||||
# Use out-of-source builds (shadow builds)
|
# Use out-of-source builds (shadow builds)
|
||||||
CONFIG -= debug_and_release debug_and_release_target
|
CONFIG -= debug_and_release debug_and_release_target
|
||||||
|
|
|
@ -13,9 +13,15 @@ TARGET = vobj
|
||||||
# We want create a library
|
# We want create a library
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
CONFIG += \
|
CONFIG += staticlib # Making static library
|
||||||
staticlib \# Making static library
|
|
||||||
c++11 # We use C++11 standard
|
# Since Q5.4 available support C++14
|
||||||
|
greaterThan(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 3) {
|
||||||
|
CONFIG += c++14
|
||||||
|
} else {
|
||||||
|
# We use C++11 standard
|
||||||
|
CONFIG += c++11
|
||||||
|
}
|
||||||
|
|
||||||
# Use out-of-source builds (shadow builds)
|
# Use out-of-source builds (shadow builds)
|
||||||
CONFIG -= debug_and_release debug_and_release_target
|
CONFIG -= debug_and_release debug_and_release_target
|
||||||
|
|
|
@ -15,9 +15,15 @@ TARGET = vpatterndb
|
||||||
# We want create a library
|
# We want create a library
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
CONFIG += \
|
CONFIG += staticlib # Making static library
|
||||||
staticlib \# Making static library
|
|
||||||
c++11 # We use C++11 standard
|
# Since Q5.4 available support C++14
|
||||||
|
greaterThan(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 3) {
|
||||||
|
CONFIG += c++14
|
||||||
|
} else {
|
||||||
|
# We use C++11 standard
|
||||||
|
CONFIG += c++11
|
||||||
|
}
|
||||||
|
|
||||||
# Use out-of-source builds (shadow builds)
|
# Use out-of-source builds (shadow builds)
|
||||||
CONFIG -= debug_and_release debug_and_release_target
|
CONFIG -= debug_and_release debug_and_release_target
|
||||||
|
|
|
@ -15,9 +15,15 @@ TARGET = vtools
|
||||||
# We want create library
|
# We want create library
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
CONFIG += \
|
CONFIG += staticlib # Making static library
|
||||||
staticlib \# Making static library
|
|
||||||
c++11 # We use C++11 standard
|
# Since Q5.4 available support C++14
|
||||||
|
greaterThan(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 3) {
|
||||||
|
CONFIG += c++14
|
||||||
|
} else {
|
||||||
|
# We use C++11 standard
|
||||||
|
CONFIG += c++11
|
||||||
|
}
|
||||||
|
|
||||||
# Use out-of-source builds (shadow builds)
|
# Use out-of-source builds (shadow builds)
|
||||||
CONFIG -= debug_and_release debug_and_release_target
|
CONFIG -= debug_and_release debug_and_release_target
|
||||||
|
|
|
@ -15,9 +15,15 @@ TARGET = vwidgets
|
||||||
# We want create a library
|
# We want create a library
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
CONFIG += \
|
CONFIG += staticlib # Making static library
|
||||||
staticlib \# Making static library
|
|
||||||
c++11 # We use C++11 standard
|
# Since Q5.4 available support C++14
|
||||||
|
greaterThan(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 3) {
|
||||||
|
CONFIG += c++14
|
||||||
|
} else {
|
||||||
|
# We use C++11 standard
|
||||||
|
CONFIG += c++11
|
||||||
|
}
|
||||||
|
|
||||||
# Use out-of-source builds (shadow builds)
|
# Use out-of-source builds (shadow builds)
|
||||||
CONFIG -= debug_and_release debug_and_release_target
|
CONFIG -= debug_and_release debug_and_release_target
|
||||||
|
|
|
@ -18,8 +18,16 @@ QT -= gui
|
||||||
# Name of binary file.
|
# Name of binary file.
|
||||||
TARGET = ParserTest
|
TARGET = ParserTest
|
||||||
|
|
||||||
# Console application, we use C++11 standard.
|
# Console application.
|
||||||
CONFIG += console c++11
|
CONFIG += console
|
||||||
|
|
||||||
|
# Since Q5.4 available support C++14
|
||||||
|
greaterThan(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 3) {
|
||||||
|
CONFIG += c++14
|
||||||
|
} else {
|
||||||
|
# We use C++11 standard
|
||||||
|
CONFIG += c++11
|
||||||
|
}
|
||||||
|
|
||||||
# CONFIG += testcase adds a 'make check' which is great. But by default it also
|
# CONFIG += testcase adds a 'make check' which is great. But by default it also
|
||||||
# adds a 'make install' that installs the test cases, which we do not want.
|
# adds a 'make install' that installs the test cases, which we do not want.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user