Skip to content

Commit

Permalink
change default for CMake build_helper (#1292)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgsogo authored and memsharded committed May 27, 2019
1 parent e8f6ef4 commit 5819697
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions reference/build_helpers/cmake.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Constructor
def __init__(self, conanfile, generator=None, cmake_system_name=True,
parallel=True, build_type=None, toolset=None, make_program=None,
set_cmake_flags=False, msbuild_verbosity=None, cmake_program=None,
set_cmake_flags=False, msbuild_verbosity='minimal', cmake_program=None,
generator_platform=None)
Parameters:
Expand All @@ -64,7 +64,9 @@ Parameters:
- **toolset** (Optional, Defaulted to ``None``): Specify a toolset for Visual Studio.
- **make_program** (Optional, Defaulted to ``None``): Indicate path to ``make``.
- **set_cmake_flags** (Optional, Defaulted to ``None``): Whether or not to set CMake flags like ``CMAKE_CXX_FLAGS``, ``CMAKE_C_FLAGS``, etc.
- **msbuild_verbosity** (Optional, Defaulted to ``None``): verbosity level for MSBuild (in case of Visual Studio generator).
- **msbuild_verbosity** (Optional, Defaulted to ``minimal``): verbosity level for
MSBuild (in case of Visual Studio generator). Set this parameter to ``None`` to avoid
using it in the command line.
- **cmake_program** (Optional, Defaulted to ``None``): Path to the custom cmake executable.
- **generator_platform** (Optional, Defaulted to ``None``): Generator platform name or none to autodetect (-A cmake option).

Expand Down

0 comments on commit 5819697

Please sign in to comment.