Specify custom build directory

Is it possible to specify a custom directory for the build output of snapcraft?

Currently the output is inside the root of the project:

.
├── art
├── bin
├── build
├── data
├── dist
├── gwe
├── parts
├── prime
├── scripts
├── snap
└── stage

I would like to specify build as base directory for all the snapcraft output:

.
├── art
├── bin
├── build
│   ├── parts
│   ├── prime
│   └── stage
├── data
├── dist
├── gwe
├── scripts
└── snap
2 Likes