From 5f4019b7f21d22c1d75fd106fb96a6683695d8ce Mon Sep 17 00:00:00 2001 From: Marc Lagrange Date: Tue, 9 Sep 2008 20:49:34 +0200 Subject: [PATCH] [CMake] Permit build out of source Signed-off-by: Marc Lagrange --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d39eddf..554807e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -56,7 +56,7 @@ macro(a_configure_file file) string(REGEX REPLACE ".in\$" "" outfile ${file}) message(STATUS "Configuring ${outfile}") configure_file(${SOURCE_DIR}/${file} - ${BUILD_DIR}/${outfile} + ${SOURCE_DIR}/${outfile} ESCAPE_QUOTE @ONLY) endmacro()