command line - Build everything : even builtByDefault: false -


i have project contain lots of references other qbs file.

project {     name: "myproject"      references: ["subproject1/subproject1.qbs",         "subproject2/subproject2.qbs",         "subproject3/subproject3.qbs",         "subproject4/subproject4.qbs",         ...         ] } 

when working in qtcreator, don't want buid everything, of subproject not built default :

builtbydefault: false 

i have automated build tools should built make sure build.

the tools run commands :

/opt/qt5.5.1/tools/qtcreator/bin/qbs build -d . -f ../myproject/myproject.qbs --job 

problem command doesn't build subproject not build default.

is there way force build in command line ?

it explained in documentation : https://doc.qt.io/qbs/product-item.html

i needed add --all-products

<qbs-folder>/qbs build --all-products -d . -f ../myproject/myproject.qbs 

Comments

Popular posts from this blog

qt - QML MouseArea onWheel event not working properly when inside QML Scrollview -

java - is not an enclosing class / new Intent Cannot Resolve Constructor -

python - Error importing VideoFileClip from moviepy : AttributeError: 'PermissionError' object has no attribute 'message' -