On 2010-05-05 10:22, Michael Wild wrote:
  # prefix and suffix elements
>      foreach(l ${list_name})
>        list(APPEND ${list_name}_TMP ${prefix}${l}${suffix} )
>      endforeach()
You also have an error in your foreach, it should be:

    foreach(l ${${list_name}})

--
Ben.
_______________________________________________
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