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

python - How to insert QWidgets in the middle of a Layout? -

python - serve multiple gunicorn django instances under nginx ubuntu -

module - Prestashop displayPaymentReturn hook url -