Zachary Pincus wrote:
In my hands (using a CMake CVS build from a week ago), these lines:

SET(bar "baz")
SET(foo "[EMAIL PROTECTED]@")
MESSAGE("${foo}")

produces this error:

CMake Error: Invalid escape sequence \@

On second thought the @...@ syntax should not be replaced in arguments, only by CONFIGURE_FILE or STRING(CONFIGURE). Please submit a feature request here:

http://www.cmake.org/Bug

For now just do

SET(AT @)
SET(foo "${AT}bar${AT}")

-Brad
_______________________________________________
CMake mailing list
[email protected]
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to