From c2e18757ce0044761af6a8c4829d91b63c92d6df Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=82=A8=EA=B6=81=EC=84=9D/On-Device=20Lab=28SR=29/Enginee?= =?utf8?q?r/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Wed, 4 Dec 2019 13:13:06 +0900 Subject: [PATCH] [compiler] Remove newline character in CMakeLists.txt (#9367) This commit will substitute `\n` character to ` `, since the blank works not only for linux but also for windows. Signed-off-by: Seok NamKoong --- compiler/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/CMakeLists.txt b/compiler/CMakeLists.txt index 5ca9ff9..7cf12f1 100644 --- a/compiler/CMakeLists.txt +++ b/compiler/CMakeLists.txt @@ -14,10 +14,10 @@ function(get_project_build_order VAR) set(REQUIRES_FILE "${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_DIR}/requires.cmake") macro(require PRED) - file(APPEND "${DEPS_FILE}" "${PRED} ${SUCC}\n") + file(APPEND "${DEPS_FILE}" "${PRED} ${SUCC} ") endmacro(require) - file(APPEND "${DEPS_FILE}" "${SUCC} ${SUCC}\n") + file(APPEND "${DEPS_FILE}" "${SUCC} ${SUCC} ") if(EXISTS "${REQUIRES_FILE}") include(${REQUIRES_FILE}) endif(EXISTS "${REQUIRES_FILE}") -- 2.7.4