Re: [CMake] newbie Q: SET command

2006-06-20 Thread David Cole
The syntax in this thread is incorrect... $(SimpleViewSrcs) does not make any sense in a CMakeLists.txt file. ${SimpleViewSrcs} is what you want. Curly braces, not parentheses... HTH, David Miguel A. Figueroa-Villanueva wrote: On 6/17/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I

[CMake] newbie Q: SET command

2006-06-17 Thread kdsfinger
hi, all I have the following line in a CMakeList.txt SET(SimpleViewSrcs $(SimpleViewSrcs) SimpleView3.cxx) What does $(SimpleViewSrcs) stands for? I used the MESSAGE($(SimpleViewSrcs)) and prints out: main.cxxSimpleView3.cxx Can someone explain what main.cxxSimpleView3.cxx stands for? I

Re: [CMake] newbie Q: SET command

2006-06-17 Thread Miguel A. Figueroa-Villanueva
On 6/17/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have the following line in a CMakeList.txt SET(SimpleViewSrcs $(SimpleViewSrcs) SimpleView3.cxx) What does $(SimpleViewSrcs) stands for? I used the MESSAGE($(SimpleViewSrcs)) and prints out: main.cxxSimpleView3.cxx Can someone explain