diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-06-12 19:54:45 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-06-12 19:54:45 (GMT) |
commit | 38e3fc4bddf6ef47828a7beb732e3d78d297bd23 (patch) | |
tree | 8a58075164e1d7e01d3d7f5e8d1f024a7b2ef4cf /Tests/QtAutogen | |
parent | ee47d80c3b476a56d876888f74387e583c69f79d (diff) | |
download | CMake-38e3fc4bddf6ef47828a7beb732e3d78d297bd23.zip CMake-38e3fc4bddf6ef47828a7beb732e3d78d297bd23.tar.gz CMake-38e3fc4bddf6ef47828a7beb732e3d78d297bd23.tar.bz2 |
Autogen: Tests fix for utf8 paths
Diffstat (limited to 'Tests/QtAutogen')
-rw-r--r-- | Tests/QtAutogen/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/QtAutogen/CMakeLists.txt b/Tests/QtAutogen/CMakeLists.txt index 073c5fd..f5acce0 100644 --- a/Tests/QtAutogen/CMakeLists.txt +++ b/Tests/QtAutogen/CMakeLists.txt @@ -100,7 +100,7 @@ if (NOT RCC_DEPENDS) message(SEND_ERROR "Initial build of rccDepends failed. Output: ${output}") endif() # Get name and timestamp of the output binary -file(STRINGS "${RCC_DEPENDS_BIN}/target.txt" targetList) +file(STRINGS "${RCC_DEPENDS_BIN}/target.txt" targetList ENCODING UTF-8) list(GET targetList 0 rccDependsBin) file(TIMESTAMP "${rccDependsBin}" timeBegin "${timeformat}") # Sleep, touch regular qrc input file, rebuild and compare timestamp @@ -188,7 +188,7 @@ if (NOT MOC_RERUN) message(SEND_ERROR "Initial build of mocRerun failed. Output: ${output}") endif() # Get name and timestamp of the output binary -file(STRINGS "${CMAKE_CURRENT_BINARY_DIR}/mocRerun/target1.txt" target1List) +file(STRINGS "${CMAKE_CURRENT_BINARY_DIR}/mocRerun/target1.txt" target1List ENCODING UTF-8) list(GET target1List 0 binFile) file(TIMESTAMP "${binFile}" timeBegin "${timeformat}") # Change file content and rebuild |