1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-14 02:08:27 +08:00
Files
CMake/Tests/RunCMake/Syntax/NameWithEscapedSpacesQuoted-stderr.txt
Oleksandr Koval 62d7acc6d4 cmCommandArgumentParserHelper: rework input handling
Old implementation uses involved Flex input management technique that
requires usage of obsolete YY_INPUT macro. This causes a lot of useless
allocations and byte-by-byte scanning. New implementation avoids those
hacks, it uses yy_scan_string() API to setup Flex input. Also it fixes
reporting of syntax error position and corresponding tests.
2020-09-09 15:49:35 +03:00

13 lines
353 B
Plaintext

^CMake Error at NameWithEscapedSpacesQuoted.cmake:1 \(message\):
Syntax error in cmake code at
.*/Tests/RunCMake/Syntax/NameWithEscapedSpacesQuoted.cmake:1
when parsing string
\${var\\ with\\ escaped\\ space}
syntax error, unexpected cal_SYMBOL, expecting } \(6\)
Call Stack \(most recent call first\):
CMakeLists.txt:3 \(include\)$