Re: [CMake] Is it possible to show dependent files in Visual Studio "folders" for ADD_CUSTOM_TARGET?

2013-01-19 Thread Jose Luis Blanco
That's exactly what I was looking for, thanks Fraser! JL On Sat, Jan 19, 2013 at 12:17 PM, Fraser Hutchison wrote: > I think this is what the SOURCES arg is for. You could just duplicate the > list of DEPENDS files as the SOURCES argument too: > > add_custom_target(LIB_NAME DEPENDS ${LIST_OF_HE

Re: [CMake] Is it possible to show dependent files in Visual Studio "folders" for ADD_CUSTOM_TARGET?

2013-01-19 Thread Fraser Hutchison
I think this is what the SOURCES arg is for. You could just duplicate the list of DEPENDS files as the SOURCES argument too: add_custom_target(LIB_NAME DEPENDS ${LIST_OF_HEADERS} SOURCES ${LIST_OF_HEADERS}) Cheers, Fraser. On 19/01/2013 10:08, Jose Luis Blanco wrote: Hello all, I hope you

[CMake] Is it possible to show dependent files in Visual Studio "folders" for ADD_CUSTOM_TARGET?

2013-01-19 Thread Jose Luis Blanco
Hello all, I hope you can help me answering whether the following is possible with CMake: We have a set of C++ libraries, some of which are header-only. Obviously those ones don't really need to be "built", but it's interesting to define "targets" for them anyway to define dependencies in other e