You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.1 KiB

function(generate_from_file in out)
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/file_ip.txt "${in}")
file(GENERATE
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/$<LOWER_CASE:$<CONFIG>>/file_op.txt
INPUT ${CMAKE_CURRENT_BINARY_DIR}/file_ip.txt
NEWLINE_STYLE UNIX
)
add_custom_target(verifyContentFromFile ALL
COMMAND ${CMAKE_COMMAND}
-DgeneratedFile=${CMAKE_CURRENT_BINARY_DIR}/$<LOWER_CASE:$<CONFIG>>/file_op.txt
-DexpectedContent=${out}
-P "${CMAKE_CURRENT_SOURCE_DIR}/VerifyContent.cmake"
)
endfunction()
function(generate_from_content in out)
file(GENERATE
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/$<LOWER_CASE:$<CONFIG>>/content_op.txt
CONTENT ${in}
NEWLINE_STYLE UNIX
)
add_custom_target(verifyContentFromContent ALL
COMMAND ${CMAKE_COMMAND}
-DgeneratedFile=${CMAKE_CURRENT_BINARY_DIR}/$<LOWER_CASE:$<CONFIG>>/content_op.txt
-DexpectedContent=${out}
-P "${CMAKE_CURRENT_SOURCE_DIR}/VerifyContent.cmake"
)
endfunction()
generate_from_file("a" "610a") # 62->b, 0a->\n
generate_from_content("a" "610a")