Welcome to mirror list, hosted at ThFree Co, Russian Federation.

faq.md « build-instructions « dev « docs - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7242ea2fb18dcdb5ec1ae7256cd0114506bed71a (plain)
1
2
3
4
5
6
7
8
9
10
# Build FAQ

### How can I specify the build type

In order to set the build type (Debug vs Release), you have to use the `CMAKE_BUILD_TYPE` variable when invoking cmake like so: `cmake
-DCMAKE_BUILD_TYPE=Release`. The supported types currently are: "Debug" and "Release".

Note that this only works for *single-config* generators. If you are using a *multi-config* generator (e.g. visual studio projects), the steps
mentioned above won't have any effect. Instead, you'll have to choose the config type when invoking the build itself. This works by using e.g. `cmake
--build . --config Release`.