forked from qt-creator/qt-creator
Note: Since not all autotests are able to run from an installed location, we need to be able to start them from the build directory, which in turn forces us to set a destination directory for libraries and plugins, so they will be found at run-time. Change-Id: Idcf7e1333dfa6e9dbf745391b78c035f842ccc5a Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
27 lines
597 B
QML
27 lines
597 B
QML
import qbs
|
|
import "../cplusplusautotest.qbs" as CPlusPlusAutotest
|
|
|
|
CPlusPlusAutotest {
|
|
name: "Cxx11 autotest"
|
|
Group {
|
|
name: "Source Files"
|
|
files: "tst_cxx11.cpp"
|
|
}
|
|
|
|
Group {
|
|
name: "Data Files"
|
|
prefix: "data/"
|
|
fileTags: ["data"]
|
|
files: [
|
|
"inlineNamespace.1.cpp",
|
|
"inlineNamespace.1.errors.txt",
|
|
"staticAssert.1.cpp",
|
|
"staticAssert.1.errors.txt",
|
|
"noExcept.1.cpp",
|
|
"noExcept.1.errors.txt"
|
|
]
|
|
}
|
|
|
|
cpp.defines: base.concat(['SRCDIR="' + path + '"'])
|
|
}
|