mirror of
https://github.com/outbackdingo/amnezia-client.git
synced 2026-01-28 10:18:11 +00:00
8 lines
193 B
CMake
8 lines
193 B
CMake
FUNCTION(PREPEND var prefix)
|
|
SET(listVar "")
|
|
FOREACH(f ${ARGN})
|
|
LIST(APPEND listVar "${prefix}/${f}")
|
|
ENDFOREACH(f)
|
|
SET(${var} "${listVar}" PARENT_SCOPE)
|
|
ENDFUNCTION(PREPEND)
|