2021-06-11 11:45:43 +03:00
# Environment variables
Environment variables of the CQtDeployer
2021-01-26 23:15:09 +03:00
This page contains information about environment variables of the default launcher script.
2021-06-11 11:45:43 +03:00
## Initialization
2021-01-26 23:15:09 +03:00
All environment variables initialized in the default launcher script. So if you use the runScript option then you must be reunited all needed variables manually.
## Variables list
| Variable name | Description |
|---|---|
| CQT_PKG_ROOT | This variable contains path to root of the current package.|
2021-02-05 11:16:22 +03:00
| CQT_RUN_FILE | This variable contains path to the run script of the using application.|
2021-01-26 23:15:09 +03:00
## Description of definitions
**Root of the current package** - This root is local root for any separate packages.
Example :
2021-06-11 11:45:43 +03:00
```bash
2021-01-26 23:15:09 +03:00
.
├── pakcage1 < < This is local root of the package1
2021-02-05 11:16:22 +03:00
│ ├── bin
│ ├── lib
│ ├── plugins
│ ├── qml
│ └── translations
2021-01-26 23:15:09 +03:00
├── package2 < < This is local root of the package2
2021-02-05 11:16:22 +03:00
│ ├── bin
│ ├── lib
│ ├── plugins
│ ├── qml
│ └── translations
2021-01-26 23:15:09 +03:00
└── pakcage3 < < This is local root of the package3
├── bin
├── lib
├── plugins
├── qml
└── translations
```