forked from organicmaps/organicmaps-tmp
Fail cmake when execute_process fails
We have `set -euo pipefail` set in `version.sh`, but the `set -e` that would normally report errors up the chain doesn't end up having any effect, since `cmake` just ignores the errors and proceeds. Signed-off-by: Chandler Swift <chandler@chandlerswift.com>
This commit is contained in:
parent
21219c40e7
commit
dd4d1870e6
1 changed files with 2 additions and 0 deletions
|
@ -89,11 +89,13 @@ else() # neither iPhone nor Android
|
|||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||
OUTPUT_VARIABLE OM_VERSION
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
COMMAND_ERROR_IS_FATAL ANY
|
||||
)
|
||||
execute_process(COMMAND tools/unix/version.sh qt_int_version
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||
OUTPUT_VARIABLE OM_INT_VERSION
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
COMMAND_ERROR_IS_FATAL ANY
|
||||
)
|
||||
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/platform_qt_version.cpp.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/platform_qt_version.cpp"
|
||||
|
|
Loading…
Add table
Reference in a new issue