hs-test: add vppctl wrapper script
[vpp.git] / src / cmake / misc.cmake
index 9542557..14c7d49 100644 (file)
@@ -39,7 +39,9 @@ endfunction()
 ##############################################################################
 # aligned config output
 ##############################################################################
-function(pr desc val)
+function(pr desc)
+  # CMake 3.12+: list(JOIN ARGN " " val)
+  string(REPLACE ";" " " val "${ARGN}")
   if("$ENV{TERM}" STREQUAL "xterm-256color")
     string(ASCII 27 esc)
     set(reset "${esc}[m")