Re: [CMake] Passing a var to a macro

2008-03-30 Thread Adiel Mittmann
stead of its VALUE: macro(PRINT_VALUES list) message (STATUS "Files to process in the macro PRINT_VALUES ${${list}}") endmacro(PRINT_VALUES) file(GLOB plugin_STR *.c *.cpp *.cxx *.h *.hpp) PRINT_VALUES(plugin_STR) -- Adiel Mittmann ___ CMake

Re: [CMake] CMake 2.6.0 Beta ready for testing!

2008-03-27 Thread Adiel Mittmann
ke.org/files/v2.6/ are using DOS newlines, which breaks things under Linux. I converted a lot of them to the Unix convention and CMake built correctly and worked fine for my projects. What is the right way of building this version under Linux? Thank you for CMake! -- Adiel Mi

Re: [CMake] Linux 64 bit woes

2008-03-26 Thread Adiel Mittmann
> Error: Incorrect register `%rax' used with `l' suffix The following CMake file generated a Makefile that compiled the example code in FD_SET's man page with no errors on my 64-bit system: ADD_EXECUTABLE(fdtest fdtest.c) > > TIA > /R -- Adiel Mittmann _