MACRO(SALOME_APPEND_LIST_OF_LIST result element_list)
SET(_tmp_res)
STRING(REPLACE ";" "," _tmp_res "${${element_list}}")
-
- LIST(LENGTH result _list_len)
- IF(NOT _list_len EQUAL 0)
- SET(${result} "${${result}};${_tmp_res}") # LIST(APPEND ...) doesn't handle well empty elements!?
- ELSE()
- SET(${result} "${_tmp_res}") # to avoid first redundant ; at the beginning of the list
- ENDIF()
+ SET(${result} "${${result}};${_tmp_res}") # LIST(APPEND ...) doesn't handle well empty elements!?
ENDMACRO(SALOME_APPEND_LIST_OF_LIST)
#########################################################################