According to the CMake documentation, the `STREQUAL` comparison is allowed
to take either a VARIABLE or a STRING as either parameter. So, in this
example below, the message does NOT print, which is broken:

    set( FUBARTEST "OK" )
    if( FUBARTEST STREQUAL "OK" )
    message( "It Worked" )
    endif()

Any reason why this isn't working as documented?

---------
Robert Dailey
--
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to