[Cmake] @@ replacement in configure_file

Stefan Schmidt Stefan.Schmidt@sophia.inria.fr
Mon, 5 May 2003 16:58:25 +0200


I've something like this in an .in file:

@INCLUDE =3D @DOXYGEN_INCLUDES@
INCLUDE =3D @DOXYGEN_INCLUDES@

that gets configured by a sequence like this:

SET(DOXYGEN_INCLUDES "${PROJECT_BINARY_DIR}/DoxyTagFiles.inc")
CONFIGURE_FILE (${COMMONCONFIG_DIR}/doxygen.config.in
=09  ${CMAKE_CURRENT_BINARY_DIR}/doxygen.config @ONLY)

this is the outcome:
@INCLUDE =3D
INCLUDE =3D /u/huangdi/0/sschmidt/mips/build/DoxyTagFiles.inc

Appearantly, lines with more than one @ aren't handled the way I want. I =
need=20
an @ sign in front of the INCLUDE in the resulting file. What can I do ab=
out=20
this?

Thanks,
Stefan