VDXF library. Since Qt5.4 available support C++14.
--HG-- branch : develop
This commit is contained in:
parent
1726b55339
commit
189f091bb4
|
@ -16,8 +16,15 @@ TARGET = vdxf
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
CONFIG += \
|
CONFIG += \
|
||||||
staticlib \# Making static library
|
staticlib # Making static library
|
||||||
c++11 # We use C++11 standard
|
|
||||||
|
# Since Qt5.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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user