2024-08-10 12:58:21 -05:00

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
}
}
}