[CMake] Linking GSL to CMake

2019-09-20 Thread Sachithra Weerasooriya
Hello! Could you please let me know how to link GSL to CMake using command line in a MAC? In my case GSL is not installed in a standard path. So make cannot find gal header files. Thank you! -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmak

Re: [CMake] Debug logging of items

2019-09-20 Thread Eric Doenges
I don't know about the targets, but you can get all variables currently defined for a directory by reading the VARIABLES property, e.g. get_property(_variables DIRECTORY "${CMAKE_SOURCE_DIR}" PROPERTY VARIABLES) I use this to dump the variables into a file so I can see with which variable sett

[CMake] Debug logging of items

2019-09-20 Thread Cornelis Bockemühl
Right now I am fighting my way through large amounts of CMake code (actually working on a ParaView custom application with many own plugins, views, domains, property widgets etc. etc.), and it is sometimes really not easy not to lose track completely! Sometimes I am happy to be back into comple