ルギア君の戯言

雑多な記事。

2012-06-29から1日間の記事一覧

CMake で sed

を実装してみた。誰得。 # read from stdin execute_process(COMMAND cat OUTPUT_VARIABLE RET) string(REPLACE ";" "\\;" RET "${RET}") string(REPLACE "\n" ";" RET "${RET}") string(REGEX REPLACE ";$" "" RET "${RET}") foreach(I RANGE 1 "${CMAKE_AR…