<div dir="ltr"><div><div>Hey Christian,<br><br></div>did you try writing CMAKE_SOURCE_DIR instead of top_srcdir?<br><br></div>Dominic<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jul 15, 2015 at 4:00 PM, Christian Engwer <span dir="ltr"><<a href="mailto:christian.engwer@uni-muenster.de" target="_blank">christian.engwer@uni-muenster.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Dear cmake gurus,<br>
<br>
I want to update an existing project to work with cmake and stumbled<br>
again over an issue, which I was not able to solve by myself.<br>
<br>
I currently have a file <a href="http://foo.ini.in" rel="noreferrer" target="_blank">foo.ini.in</a> with a content similar to:<br>
<br>
[domain.test2d]<br>
dim = 2<br>
mesh = @top_srcdir@/src/grids/rectangle.msh<br>
refine = 1<br>
<br>
which allows me specify a mesh location in the source tree easily via<br>
the generated ini file, even if I use out-of-source builds.<br>
<br>
For autotools I added the <a href="http://foo.ini.in" rel="noreferrer" target="_blank">foo.ini.in</a> to the list of generated files<br>
in <a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a>:<br>
<br>
AC_CONFIG_FILES([<br>
...<br>
   src/foo.ini<br>
])<br>
<br>
Now I tried to do the same for cmake. I added to following to src/CMakeLists.txt:<br>
<br>
configure_file(<a href="http://foo.ini.in" rel="noreferrer" target="_blank">foo.ini.in</a> foo.ini)<br>
<br>
but configure_file doesn't know about @top_srcdir@ and similar. I fist<br>
would have thought tis should work, as it works for Doxyfile.in, but<br>
it doesn't. Then I check the DuneDoxygen.cmake and it seems that this<br>
does some fancy tricks with by directly calling cmake. Is this the<br>
official way to go? Or is there an easier way, which forks for<br>
"simple" .in-files? If it's not the case we should consider<br>
encapsulating the doxygen magic, as .in files could be something more<br>
people use. At least it was a nice trick I have shown a couple of<br>
people.<br>
<br>
Christian<br>
<br>
<br>
_______________________________________________<br>
Dune-devel mailing list<br>
<a href="mailto:Dune-devel@dune-project.org">Dune-devel@dune-project.org</a><br>
<a href="http://lists.dune-project.org/mailman/listinfo/dune-devel" rel="noreferrer" target="_blank">http://lists.dune-project.org/mailman/listinfo/dune-devel</a><br>
</blockquote></div><br></div>