Glossary#

Build configuration#

Contains all the information you need to compile the sources into binaries. Different build configurations allow you to quickly build the project for different purposes. By default, PVRStudio creates debug build and release build configurations for each kit defined for your project. A debug build contains additional debug symbols that you need for debugging the application but that you can leave out from the release version. Generally, you use the debug configuration for testing and the release configuration for creating the final installation file.

Build step#

A command that PVRStudio executes to accomplish a basic step in a complex task such as cleaning, building, or deploying a project. PVRStudio executes build steps in sequence to complete the task. The number and type of necessary build steps depends on the project type and the build system you use.

Deploy configuration#

Handles the packaging and copying of the necessary files to a location you want to run the executable at. The files can be copied to a location in the file system of the development PC or a device.

Device#

An embedded device or a mobile device. For more information, see Target Platforms.

Kit#

PVRStudio groups build and run specific settings as kits to make cross-platform development easier. Each kit consists of a set of values that define one environment, such as a device, tool chain, and debugger command to use. Configure kits at Tools > Options > Kits.

Mode#

Adapts the PVRStudio user interface to the different application development tasks at hand. Each mode has its own view that shows only the information required for performing a particular task, and provides only the most relevant features and functions related to it. As a result, the majority of the PVRStudio window area is always dedicated to actual application development tasks.

Project#

Groups together a set of source files, forms, and resource files that you can build for, as well as deploy and run on different desktop and device platforms, as specified by a build configuration, deploy configuration, and run configuration.

Run configuration#

Starts the application in the location where it was copied by the deploy configuration. By default, when you run a project, PVRStudio builds it, deploys it to the device specified in the selected kit, and runs it there. However, if you have not made any changes to the project since you last built and deployed it, PVRStudio simply runs it again.

Shadow build#

Shadow building means building a project in a separate directory, the build directory. The build directory is different from the source directory. One of the benefits of shadow building is that it keeps your source directory clean, which makes it faster to switch between build configurations. Therefore, shadow building is the best practice if you need many build configurations for a single set of source files.