[CMake] list of lists -possible?

2010-06-02 Thread Doug Reiland
Is it possible to implement a list of lists. The following example shows cmake ending up with a list with 6 elements instead of a list with 2 elements with each element being a list with 3 elements set(fooa 1 2 3) set(foob a b c) message(${fooa}) message(${fooa}) message(${foob}) list(APPEND foos

Re: [CMake] list of lists -possible?

2010-06-02 Thread Clinton Stimpson
On Wednesday, June 02, 2010 10:24:44 am Doug Reiland wrote: Is it possible to implement a list of lists. The following example shows cmake ending up with a list with 6 elements instead of a list with 2 elements with each element being a list with 3 elements set(fooa 1 2 3) set(foob a b c)

Re: [CMake] list of lists -possible?

2010-06-02 Thread Hendrik Sattler
Am Mittwoch 02 Juni 2010, 18:34:56 schrieb Clinton Stimpson: On Wednesday, June 02, 2010 10:24:44 am Doug Reiland wrote: Is it possible to implement a list of lists. The following example shows cmake ending up with a list with 6 elements instead of a list with 2 elements with each element

Re: [CMake] list of lists -possible?

2010-06-02 Thread Clinton Stimpson
On Wednesday, June 02, 2010 11:02:18 am Hendrik Sattler wrote: Am Mittwoch 02 Juni 2010, 18:34:56 schrieb Clinton Stimpson: On Wednesday, June 02, 2010 10:24:44 am Doug Reiland wrote: Is it possible to implement a list of lists. The following example shows cmake ending up with a list with

Re: [CMake] list of lists -possible?

2010-06-02 Thread Doug Reiland
perfect, thankyou! On Wed, Jun 2, 2010 at 12:34 PM, Clinton Stimpson clin...@elemtech.com wrote: On Wednesday, June 02, 2010 10:24:44 am Doug Reiland wrote: Is it possible to implement a list of lists. The following example shows cmake ending up with a list with 6 elements instead of a list