[CMake] CMake+Eclipse: how to get header files with non-standard suffix into the headers folders?

2013-03-11 Thread Magnus Therning
In the project I work on we have tools that generate quite a few header files, but they are all generated with names matching *.inc. I've added them all to the list of sources for the target, but the generated Eclipse project doesn't list these files among the headers. Is there a way to tell CMAKE

Re: [CMake] CMake+Eclipse: how to get header files with non-standard suffix into the headers folders?

2013-03-11 Thread Petr Kmoch
Hi Magnus, I've never worked with Eclipse, but source_group() might be the command you're looking for. Petr On Mon, Mar 11, 2013 at 4:17 PM, Magnus Therning wrote: > In the project I work on we have tools that generate quite a few > header files, but they are all generated with names matching *

Re: [CMake] CMake+Eclipse: how to get header files with non-standard suffix into the headers folders?

2013-03-11 Thread Alexander Neundorf
On Monday 11 March 2013, Magnus Therning wrote: > In the project I work on we have tools that generate quite a few > header files, but they are all generated with names matching *.inc. > I've added them all to the list of sources for the target, but the > generated Eclipse project doesn't list thes

Re: [CMake] CMake+Eclipse: how to get header files with non-standard suffix into the headers folders?

2013-03-13 Thread Magnus Therning
On Mon, Mar 11, 2013 at 8:49 PM, Alexander Neundorf wrote: > On Monday 11 March 2013, Magnus Therning wrote: >> In the project I work on we have tools that generate quite a few >> header files, but they are all generated with names matching *.inc. >> I've added them all to the list of sources for