summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/File_Configure/NewLineStyle-ValidArg.cmake
blob: e384873663a22d2aeee8b051b5616848149f1d76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
set(file_name  ${CMAKE_CURRENT_BINARY_DIR}/NewLineStyle.txt)

function(test_eol style in out)
    file(CONFIGURE
        OUTPUT ${file_name}
        CONTENT "@in@"
        NEWLINE_STYLE ${style}
    )
    file(READ ${file_name} new HEX)
    if(NOT "${new}" STREQUAL "${out}")
        message(FATAL_ERROR "No ${style} line endings")
    endif()
endfunction()

test_eol(DOS   "a" "610d0a")
test_eol(WIN32 "b" "620d0a")
test_eol(CRLF  "c" "630d0a")

test_eol(UNIX  "d" "640a")
test_eol(LF    "e" "650a")