mirror of
https://github.com/Serial-Studio/Serial-Studio.git
synced 2025-01-31 17:42:55 +08:00
19 lines
395 B
QML
19 lines
395 B
QML
|
import qbs
|
||
|
|
||
|
Project {
|
||
|
name: "Tests"
|
||
|
/* NOTE: to change this just add "Tests.buildUnitTests:false" or "Tests.buildUnitTests:true" to qbs call */
|
||
|
property bool buildUnitTests: true
|
||
|
|
||
|
references: [
|
||
|
"auto"
|
||
|
]
|
||
|
|
||
|
SubProject {
|
||
|
filePath: "gtest/gtest.qbs"
|
||
|
Properties {
|
||
|
condition: qbs.targetOS.contains("unix") && buildUnitTests
|
||
|
}
|
||
|
}
|
||
|
}
|