Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P3: Somewhat important
-
Resolution: Done
-
Affects Version/s: Qt Creator 4.12.1
-
Fix Version/s: Qt Creator 4.13.0-beta1
-
Component/s: Project & Build Management
-
Labels:None
-
Platform/s:
Description
I use the MSVC 2015 generator with CMake. I need to pass the "--config Release" parameter.
If I write
config Release
I get
cmake.exe --build . --target ALL_BUILD -- config Release
(unnecessary space between "--" and "config").
If I write
--config Release
I get
cmake.exe --build . --target ALL_BUILD -- --config Release
(unnecessary string "-- " with a space at the end).