1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
|
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qbs.
**
** $QT_BEGIN_LICENSE:FDL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Free Documentation License Usage
** Alternatively, this file may be used under the terms of the GNU Free
** Documentation License version 1.3 as published by the Free Software
** Foundation and appearing in the file included in the packaging of
** this file. Please review the following information to ensure
** the GNU Free Documentation License version 1.3 requirements
** will be met: https://www.gnu.org/licenses/fdl-1.3.html.
** $QT_END_LICENSE$
**
****************************************************************************/
/*!
\qmltype qbs
\inqmlmodule QbsModules
\since Qbs 1.0
\brief Comprises general properties.
The \c qbs module is implicitly loaded in every product. It contains properties of the current
build environment, independent of the used programming languages and toolchains.
\section2 Installation Properties
Typically, you use \l{Group} items to specify the target directories for
installing files. To install a group of files, set the \l{qbs::install}
{qbs.install} property of the Group to \c true. The value of
\l{qbs::installDir}{qbs.installDir} specifies the path to the directory
where the files will be installed. You can specify a base directory for all
installation directories as the value of \l{qbs::installPrefix}
{qbs.installPrefix}.
For example, the following properties specify where a set of QML files and
an application executable are installed on Windows and Linux:
\badcode
Application {
name: "myapp"
Group {
name: "Runtime resources"
files: "*.qml"
qbs.install: true
qbs.installDir: condition: qbs.targetOS.contains("unix")
? "share/myapp" : "resources"
}
Group {
name: "The App itself"
fileTagsFilter: "application"
qbs.install: true
qbs.installDir: "bin"
}
qbs.installPrefix: condition: qbs.targetOS.contains("unix")
? "usr/local" : "MyApp"
}
\endcode
On Windows, the QML files will ultimately get installed in
\c{MyApp\resources} and the application executable in \c MyApp\bin,
for instance under \c{C:\Program Files}. On Linux, the QML files will be
installed in \c /usr/local/share/myapp and the executable in
\c /usr/local/bin.
By default, \l{qbs::installRoot}{qbs.installRoot} creates the
\c install-root directory in the build directory for packaging the binaries
before installation. It is a temporary directory that is usually not
available when the application is run, and it should therefore not be set in
the project files. You can override the default value from the command line,
as described in \l{Installing Files}.
\section2 Multiplexing Properties
The following properties are specific to \l{Multiplexing}
{product multiplexing}:
\list
\li \l{qbs::}{architectures}
\li \l{qbs::}{buildVariants}
\li \l{qbs::}{profiles}
\endlist
*/
/*!
\qmlproperty string qbs::configurationName
\since Qbs 1.6
\readonly
The name of the current build configuration.
The build configuration is set via the command line parameter \c
config. For more information, see \l{build}{build}.
\defaultvalue \c{"default"}
*/
/*!
\qmlproperty string qbs::buildVariant
The name of the build variant for the current build.
Possible values are \c{"debug"}, \c{"release"} and \c{"profiling"}.
A debug build usually contains additional debug symbols that are needed for
debugging the application and has optimizations turned off. A profiling
build usually contains debug symbols and has optimizations turned on. This
is useful for profiling tools or when you need to retain debug symbols
in a release build. A release build is a build without debug information and
with optimizations enabled.
\defaultvalue \c{"release"} if
\l{qbs::configurationName}{qbs.configurationName} is \c{"release"}. Otherwise
\c{"debug"}
*/
/*!
\qmlproperty bool qbs::debugInformation
Whether to generate debug information.
\defaultvalue \c{true} if \l{qbs::buildVariant}{qbs.buildVariant} is \c{"debug"} or
\c{"profiling"}. Otherwise \c{false}.
*/
/*!
\qmlproperty bool qbs::enableDebugCode
Whether to enable debug functionality in the product. Not to be confused
with generation of debug symbols or the code optimization level.
The property changes the following things when enabled:
\list
\li Passes a flag to the Windows linker to link against a debug
Windows CRT (common runtime) library
(for example /MTd instead of /MT)
\endlist
The property changes the following things when disabled:
\list
\li Passes the \c{NDEBUG} define to the compiler
\endlist
Typically, this property is enabled for debug builds and disabled for
release or profiling builds.
\defaultvalue \c{true} for debug builds, \c{false} otherwise.
*/
/*!
\qmlproperty string qbs::optimization
The general type of optimization that should be performed by all toolchains.
Allowed values are:
\list
\li \c{"fast"}
\li \c{"none"}
\li \c{"small"}
\endlist
\defaultvalue \c{"none"} if \l{qbs::buildVariant}{qbs.buildVariant} is \c{"debug"}.
Otherwise \c{"fast"}.
*/
/*!
\qmlproperty string qbs::targetPlatform
\since 1.11
The OS you want to build the project for.
This property is typically set in a profile or for a particular product
where the target OS is always known (such as an Apple Watch app written in
native code).
For example, a profile used for building for the iOS Simulator platform will have this
property set to the \c ios-simulator value:
\code
profiles.xcode-iphonesimulator.qbs.targetPlatform: "ios-simulator"
\endcode
You should generally treat this property as \e{write-only} and avoid using
it to test for the current target OS. Instead, use the \l{qbs::}{targetOS}
property for conditionals.
\section2 Relation between targetPlatform and targetOS
This table describes the possible values and matching between the \c targetPlatform
and the \l{qbs::}{targetOS} properties:
\table
\header
\li Target Platform
\li Target OS
\row
\li \c{"aix"}
\li \c{["aix", "unix"]}
\row
\li \c{"android"}
\li \c{["android", "linux", "unix"]}
\row
\li \c{"dos"}
\li \c{["dos"]}
\row
\li \c{"freebsd"}
\li \c{["freebsd", "bsd", "unix"]}
\row
\li \c{"haiku"}
\li \c{["haiku"]}
\row
\li \c{"hpux"}
\li \c{["hpux", "unix"]}
\row
\li \c{"hurd"}
\li \c{["hurd", "unix"]}
\row
\li \c{"integrity"}
\li \c{["integrity", "unix"]}
\row
\li \c{"ios"}
\li \c{["ios", "darwin", "bsd", "unix"]}
\row
\li \c{"ios-simulator"}
\li \c{["ios-simulator", "ios", "darwin", "bsd", "unix"]}
\row
\li \c{"linux"}
\li \c{["linux", "unix"]}
\row
\li \c{"lynx"}
\li \c{["lynx"]}
\row
\li \c{"macos"}
\li \c{["macos", "darwin", "bsd", "unix"]}
\row
\li \c{"netbsd"}
\li \c{["netbsd", "bsd", "unix"]}
\row
\li \c{"openbsd"}
\li \c{["openbsd", "bsd", "unix"]}
\row
\li \c{"os2"}
\li \c{["os2"]}
\row
\li \c{"qnx"}
\li \c{["qnx", "unix"]}
\row
\li \c{"solaris"}
\li \c{["solaris", "unix"]}
\row
\li \c{"tvos"}
\li \c{["tvos", "darwin", "bsd", "unix"]}
\row
\li \c{"tvos-simulator"}
\li \c{["tvos-simulator", "tvos", "darwin", "bsd", "unix"]}
\row
\li \c{"unix"}
\li \c{["unix"]}
\row
\li \c{"vxworks"}
\li \c{["vxworks"]}
\row
\li \c{"watchos"}
\li \c{["watchos", "darwin", "bsd", "unix"]}
\row
\li \c{"watchos-simulator"}
\li \c{["watchos-simulator", "watchos", "darwin", "bsd", "unix"]}
\row
\li \c{"windows"}
\li \c{["windows"]}
\row
\li \c{"none"}
\li \c{["none"]}
\row
\li \c{undefined}
\li \c{[]}
\endtable
\note The "none" value is usually used for a bare-metal platforms.
\sa {Target Platforms}
\defaultvalue \l{platform}{Host.platform()}
*/
/*!
\qmlproperty string qbs::architecture
The target platform's processor architecture.
\c{undefined} indicates that the target platform is architecture-independent
(for example the CLR or JVM).
This property is typically set in a profile.
Commonly used values are: \c{"x86"}, \c{"x86_64"}, and \c{"arm"}.
\section2 Supported Processor Architectures
This table describes the possible values of the \l{qbs::}{architecture} property:
\table
\header
\li Architecture
\li Description
\row
\li \c{"78k"}
\li 16- and 8-bit accumulator-based register-bank CISC architecture
microcontroller family manufactured by Renesas Electronics
\row
\li \c{"arm"}
\li 32-bit RISC architecture for computer processors
developed by Acorn RISC Machine
\note There are a lot of sub-variants of the ARM architecture.
Some specialized \QBS modules differentiate between them,
making use of values such as \c "armv7a". Please consult the
respective module-specific documentation for information
on what kind of value to use.
\row
\li \c{"arm64"}
\li 64-bit RISC architecture for computer processors
developed by Acorn RISC Machine
\row
\li \c{"avr"}
\li 8-bit modified Harvard RISC architecture microcontroller
family manufactured by Microchip Technology
\row
\li \c{"avr32"}
\li 32-bit RISC architecture microcontroller family developed by Atmel
\row
\li \c{"c166"}
\li 16-bit architecture microcontroller family developed by Infineon
\row
\li \c{"cr16"}
\li 16-bit compact RISC architecture microcontroller family
developed by National Semiconductor
\row
\li \c{"e2k"}
\li 512-bit Russian wide VLIW microprocessor developed by Moscow Center
of SPARC Technologies (MCST) and fabricated by TSMC
\row
\li \c{"hcs8"}
\li 8-bit HC08 and S08 microcontroller family from Freescale Semiconductor
\row
\li \c{"hcs12"}
\li 16-bit HC12 and S12 microcontroller family from Freescale Semiconductor
\row
\li \c{"ia64"}
\li 64-bit ISA architecture of the Itanium family processors
developed by Intel
\row
\li \c{"m16c"}
\li 16-bit CISC microcontrollers featuring high ROM code
efficiency manufactured by Renesas Electronics
\row
\li \c{"m32c"}
\li 32- and 16-bit CISC microcontrollers featuring high ROM code
efficiency manufactured by Renesas Electronics
\row
\li \c{"m32r"}
\li 32-bit RISC microcontrollers for general industrial and
car-mounted systems, digital AV equipment, digital imaging
equipment manufactured by Renesas Electronics
\row
\li \c{"m68k"}
\li 16- and 32-bit CISC microprocessor, developed by Motorola
Semiconductor Products Sector, and further improved as ColdFire
architecture developed by NXP
\row
\li \c{"mcs251"}
\li 8-, 16-, and 32-bit microcontroller family which is a next binary
compatible generation for the \c "mcs51" family
\row
\li \c{"mcs51"}
\li 8-bit Harvard architecture microcontroller family developed by Intel
\row
\li \c{"mips"}
\li 32-bit RISC microprocessor without interlocked pipelined stages
architecture developed by MIPS Computer Systems
\row
\li \c{"mips64"}
\li 64-bit RISC microprocessor without interlocked pipelined stages
architecture developed by MIPS Computer Systems
\row
\li \c{"msp430"}
\li 16-bit mixed-signal microcontroller family manufactured
by Texas Instruments
\row
\li \c{"ppc"}
\li 32-bit RISC architecture processor family developed by
Apple–IBM–Motorola alliance
\row
\li \c{"ppc64"}
\li 64-bit RISC architecture processor family developed by
Apple–IBM–Motorola alliance
\row
\li \c{"r32c"}
\li 32-bit CISC microcontrollers with improved code efficiency
and processing performance manufactured by Renesas Electronics
\row
\li \c{"rh850"}
\li 32-bit automotive microcontroller family manufactured
by Renesas Electronics
\row
\li \c{"riscv"}
\li Open and free standard instruction set architecture based on established
RISC principles
\row
\li \c{"rl78"}
\li 16- and 8-bit accumulator-based register-bank CISC architecture
with 3-stage instruction pipelining microcontroller family manufactured
by Renesas Electronics
\row
\li \c{"rx"}
\li High performance 32-bit CISC microcontroller family manufactured
by Renesas Electronics
\row
\li \c{"s390x"}
\li 64- and 32-bit System/390 processor architecture developed by IBM
\row
\li \c{"sh"}
\li 32-bit RISC architecture processor family developed by Hitachi and
currently manufactured by Renesas Electronics
\row
\li \c{"sparc"}
\li 32-bit RISC architecture processor family developed by
Sun Microsystems and Fujitsu
\row
\li \c{"sparc64"}
\li 64-bit RISC architecture processor family developed by
Sun Microsystems and Fujitsu
\row
\li \c{"stm8"}
\li 8-bit microcontroller family manufactured by STMicroelectronics
\row
\li \c{"v850"}
\li 32-bit RISC microcontroller family manufactured by Renesas Electronics
\row
\li \c{"x86"}
\li 32-bit ISA architecture processor family developed by Intel
\row
\li \c{"x86_16"}
\li 16-bit ISA architecture processor family developed by Intel
\row
\li \c{"x86_64"}
\li 64-bit ISA architecture processor family developed by AMD
\row
\li \c{"xtensa"}
\li 32-bit architecture with a compact 16- and 24-bit instruction set
developed by Tensilica
\endtable
\nodefaultvalue
*/
/*!
\qmlproperty stringList qbs::toolchain
Contains the list of string values describing the toolchain and toolchain
family that is used to build a project.
This property is deduced from the \l{qbs::}{toolchainType} property and is typically
used to test for a particular toolchain or toolchain family in conditionals:
\code
Properties {
// flags for GCC
condition: qbs.toolchain.contains("gcc")
cpp.commonCompilerFlags: ...
}
Properties {
// flags for MSVC
condition: qbs.toolchain.contains("msvc")
cpp.commonCompilerFlags: ...
}
\endcode
Unlike \l{qbs::}{toolchainType}, which contains a single value, \c qbs.toolchain
is a string list which also contains the toolchain family. This allows to make
conditions and checks simpler. For example, instead of:
\code
(qbs.toolchainType === "xcode" || qbs.toolchainType === "clang" || qbs.toolchainType === "gcc")
\endcode
use:
\code
qbs.toolchain.contains("gcc")
\endcode
since XCode, GCC and Clang belong to the \c "gcc" family.
\section2 Relation between toolchainType and toolchain
This table describes the possible values and matching between the \l{qbs::}{toolchainType}
and the \c toolchain properties:
\table
\header
\li Toolchain Type
\li Toolchain
\row
\li \c{"clang"}
\li \c{["clang", "llvm", "gcc"]}
\row
\li \c{"clang-cl"}
\li \c{["clang-cl", "msvc"]}
\row
\li \c{"cosmic"}
\li \c{["cosmic"]}
\row
\li \c{"dmc"}
\li \c{["dmc"]}
\row
\li \c{"gcc"}
\li \c{["gcc"]}
\row
\li \c{"iar"}
\li \c{["iar"]}
\row
\li \c{"keil"}
\li \c{["keil"]}
\row
\li \c{"llvm"}
\li \c{["llvm", "gcc"]}
\row
\li \c{"mingw"}
\li \c{["mingw", "gcc"]}
\row
\li \c{"msvc"}
\li \c{["msvc"]}
\row
\li \c{"qcc"}
\li \c{["qcc"]}
\row
\li \c{"sdcc"}
\li \c{["sdcc"]}
\row
\li \c{"watcom"}
\li \c{["watcom"]}
\row
\li \c{"xcode"}
\li \c{["xcode", "clang", "llvm", "gcc"]}
\endtable
\nodefaultvalue
*/
/*!
\qmlproperty string qbs::toolchainType
\since Qbs 1.11
The toolchain that is going to be used for this build.
For example, to build a project using the \c "clang" toolchain, simply do
\code
qbs build qbs.toolchainType:clang
\endcode
You should generally treat this property as \e{write-only} and avoid using
it to test for the current toolchain. Instead, use the \l{qbs::}{toolchain}
property for conditionals.
Typical values include: \c{"gcc"}, \c{"clang"}, \c{"clang-cl"}, \c{"mingw"},
\c{"msvc"}, and \c{"xcode"}. Also see \l{Relation between toolchainType and toolchain}.
By default, \c qbs.toolchainType is automatically detected based on the
\l{qbs::}{targetOS} property:
\table
\header
\li Target OS
\li Toolchain
\row
\li \c{"darwin"}
\li \c{"xcode"}
\row
\li \c{"freebsd"}
\li \c{"clang"}
\row
\li \c{"haiku"}
\li \c{"gcc"}
\row
\li \c{"qnx"}
\li \c{"qcc"}
\row
\li \c{"unix"}
\li \c{"gcc"}
\row
\li \c{"vxworks"}
\li \c{"gcc"}
\row
\li \c{"windows"}
\li \c{"msvc"}
\endtable
\defaultvalue Determined automatically.
*/
/*!
\qmlproperty string qbs::sysroot
The \c sysroot of the target platform.
This property is typically set in a profile for cross-compiling.
\nodefaultvalue
*/
/*!
\qmlproperty path qbs::shellPath
\since Qbs 1.5
The platform-specific file path corresponding to the command line
interpreter.
On Windows, this is the path to \c{cmd.exe}, which is held in the
\c{COMSPEC} environment variable (typically,
\c{C:/Windows/System32/cmd.exe}),
On Unix-like platforms, this is \c{/bin/sh}.
\defaultvalue \c{"%COMSPEC%"} on Windows, \c{"/bin/sh"} on Unix
*/
/*!
\qmlproperty stringList qbs::targetOS
\readonly
Contains the list of string values describing the OS and OS family that is
used to build a project.
This property is calculated based on the \l{qbs::}{targetPlatform} property and is typically
used to test for a particular OS or OS family in conditionals:
\code
Group {
// Includes all Unix-like platforms, such as: Linux, BSD, Apple platforms and others.
condition: qbs.targetOS.contains("unix")
files: ...
}
Group {
// Includes all Apple platforms, such as macOS, iOS, and iOS Simulator.
condition: qbs.targetOS.contains("darwin")
files: ...
}
Group {
// Includes only macOS
condition: qbs.targetOS.contains("macos")
files: ...
}
\endcode
Avoid using \l{qbs::}{targetPlatform} for this purpose. For example, instead of:
\code
qbs.targetPlatform === "macos" || qbs.targetPlatform === "ios" || qbs.targetPlatform === "tvos" || qbs.targetPlatform === "watchos"
\endcode
use
\code
qbs.targetOS.contains("darwin")
\endcode
However, in some cases using \l{qbs::}{targetPlatform} would be acceptable, such as
when the resulting condition would be simpler while still being correct:
\code
qbs.targetPlatform === "linux"
\endcode
versus
\code
qbs.targetOS.contains("linux") && !qbs.targetOS.contains("android")
\endcode
For the complete list of possible values, see
\l{Relation between targetPlatform and targetOS}.
\nodefaultvalue
*/
/*!
\qmlproperty string qbs::version
\readonly
\since Qbs 1.4.1
The version number of \QBS as a string. For example, \c "1.4.1".
*/
/*!
\qmlproperty int qbs::versionMajor
\readonly
\since Qbs 1.4.1
The major version number of \QBS.
*/
/*!
\qmlproperty int qbs::versionMinor
\readonly
\since Qbs 1.4.1
The minor version number of \QBS.
*/
/*!
\qmlproperty int qbs::versionPatch
\readonly
\since Qbs 1.4.1
The patch version number of \QBS.
*/
/*!
\qmlproperty bool qbs::install
Whether to install a certain set of files.
This property is typically set in a \l{Group} item to mark a number of files
as installable.
\note Artifacts for which this property is enabled automatically receive the
file tag \c "installable". This is useful for writing packaging-related
rules.
\defaultvalue \c{false}
*/
/*!
\qmlproperty string qbs::installSourceBase
\since Qbs 1.4
The base directory of the local files that are going to be installed. The
source base directory is omitted from the target directory path specified in
\l{qbs::}{installDir}.
\defaultvalue The directory of the current file to be installed, relative to
the product's source directory.
*/
/*!
\qmlproperty string qbs::installDir
The installation directory for the files of a \l{Product}{product} or a
\l{Group}.
The value of this property is a path that is relative to \l{qbs::}
{installPrefix}.
\nodefaultvalue
*/
/*!
\qmlproperty string qbs::installPrefix
\since Qbs 1.1
The global installation prefix. It is implicitly prepended to all values of
\l{qbs::}{installDir}.
The value of this property itself is relative to the \l{qbs::}{installRoot}
in the context of installation.
\defaultvalue \c "/usr/local" on Unix, \c "" otherwise
*/
/*!
\qmlproperty string qbs::installRoot
\since Qbs 1.4
The global installation root. It is implicitly prepended to all values
of \l{qbs::}{installPrefix} in the context of installation.
\note This property is fundamentally different from \l{qbs::}{installDir}
and \l{qbs::}{installPrefix} in that it must not be visible to the code
being built. In fact, the install root is often just a temporary location
used to package the binaries, which should therefore not assume they will be
in that location at run-time. For the same reason, this property
is usually not set from within project files.
\defaultvalue \c{<build dir>/install-root}
*/
/*!
\qmlproperty stringList qbs::architectures
\since Qbs 1.9
The architectures the product will be built for.
\nodefaultvalue
*/
/*!
\qmlproperty stringList qbs::buildVariants
\since Qbs 1.9
The build variants the product will be built for.
\nodefaultvalue
*/
/*!
\qmlproperty stringList qbs::profiles
\since Qbs 1.9
The profiles for which the product should be built.
For each profile listed here, one instance of the product will be built
according to the properties set in the respective profile.
\defaultvalue \l{Project::profile}{[project.profile]}
*/
|