We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e69cf4d commit 9cdd0f7Copy full SHA for 9cdd0f7
src/cmake_generator.cpp
@@ -165,7 +165,7 @@ struct Command {
165
// https://cmake.org/cmake/help/latest/manual/cmake-language.7.html#unquoted-argument
166
// NOTE: Normally '/' does not require quoting according to the documentation but this has been the case here
167
// previously, so for backwards compatibility its still here.
168
- if (str.find_first_of("()#\"\\'> |/") == str.npos)
+ if (str.find_first_of("()#\"\\'> |/;") == str.npos)
169
return str;
170
std::string result;
171
result += "\"";
0 commit comments