[CMake] Not resolving Symlinks at all

2013-02-26 Thread Michael Jackson
I have the following code: message(STATUS Found HDFLibrary ${HDF5_LIBRARY_RELEASE}) if(IS_SYMLINK ${HDF_LIBRARY_DEBUG}) message(STATUS SYMLINK: ${HDF_LIBRARY_DEBUG}) get_filename_component(test ${HDF_LIBRARY_DEBUG} REALPATH) message(STATUS Real Path: ${test}) endif() if(IS_SYMLINK

Re: [CMake] Not resolving Symlinks at all

2013-02-26 Thread Kornel Benko
Am Dienstag, 26. Februar 2013 um 10:52:36, schrieb Michael Jackson mike.jack...@bluequartz.net I have the following code: message(STATUS Found HDFLibrary ${HDF5_LIBRARY_RELEASE}) if(IS_SYMLINK ${HDF_LIBRARY_DEBUG}) message(STATUS SYMLINK: ${HDF_LIBRARY_DEBUG})

Re: [CMake] Not resolving Symlinks at all

2013-02-26 Thread Michael Jackson
I fell like an idiot. Thanks. That is the problem. Just have to tell my self to slow down.. Thanks -- Mike Jackson www.bluequartz.net On Feb 26, 2013, at 11:05 AM, Kornel Benko wrote: Am Dienstag, 26. Februar 2013 um 10:52:36, schrieb Michael Jackson mike.jack...@bluequartz.net I have the