[CMake] rsh

Alexander Neundorf a.neundorf-work at gmx.net
Mon Jan 8 02:58:40 EST 2007


Von: Ghiora Drori <drori at edrori.com>

...
> Also how do I get rid of the ";" when concatenating strings to a
> variable.

If you do 
SET(var1 "abc")
SET(var2 "def")

SET(FOO ${var1} ${var2})
you have a list of two variables.
If you want one string, 

SET(FOO "${var1} ${var2}")
should do what you want.

Bye
Alex


-- 
Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! 
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer


More information about the CMake mailing list