Fix calling cmake -E to use proper cmake var
This commit is contained in:
@@ -1157,8 +1157,8 @@ source_group("CMake Rules" FILES ViewerInstall.cmake)
|
|||||||
# the summary.json file is created for the benefit of the TeamCity builds, where
|
# the summary.json file is created for the benefit of the TeamCity builds, where
|
||||||
# it is used to provide descriptive information to the build results page
|
# it is used to provide descriptive information to the build results page
|
||||||
add_custom_target(generate_viewer_version ALL
|
add_custom_target(generate_viewer_version ALL
|
||||||
COMMAND cmake -E echo ${VIEWER_SHORT_VERSION}.${VIEWER_VERSION_REVISION} > ${CMAKE_CURRENT_BINARY_DIR}/viewer_version.txt
|
COMMAND ${CMAKE_COMMAND} -E echo ${VIEWER_SHORT_VERSION}.${VIEWER_VERSION_REVISION} > ${CMAKE_CURRENT_BINARY_DIR}/viewer_version.txt
|
||||||
COMMAND cmake -E echo {"Type":"viewer","Version":"${VIEWER_SHORT_VERSION}.${VIEWER_VERSION_REVISION}"} > ${CMAKE_BINARY_DIR}/summary.json
|
COMMAND ${CMAKE_COMMAND} -E echo {"Type":"viewer","Version":"${VIEWER_SHORT_VERSION}.${VIEWER_VERSION_REVISION}"} > ${CMAKE_BINARY_DIR}/summary.json
|
||||||
COMMENT "Generating viewer_version.txt for manifest processing"
|
COMMENT "Generating viewer_version.txt for manifest processing"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user