-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
Qt Creator 12.0.1
Copying CMake configuration keys/values from the table in Projects/Build will not encase values with quotes when necessary
Copying values from Projects pane:
These values are then copied without quotes around the value:
-DTEST_FLAGS_ARGS:STRING=-Ofast -Wall -Whatever -DTEST_PATHNAME_WITH_SPACES:PATH=C:/Program Files/Something
This is a problem because if you were to paste into a command line, the declarations would be misinterpreted as multiple arguments.
It should look like this:
-DTEST_FLAGS_ARGS:STRING="-Ofast -Wall -Whatever" -DTEST_PATHNAME_WITH_SPACES:PATH="C:/Program Files/Something"