Another attempt at getting CMake to escape the Apple developer id correctly.

This commit is contained in:
John Maguire 2013-07-10 18:59:39 +02:00
parent da5c338b53
commit f4f9b70f8d
1 changed files with 2 additions and 1 deletions

View File

@ -1399,7 +1399,8 @@ if (APPLE)
add_custom_command(TARGET clementine
POST_BUILD
COMMAND
codesign -s "'${APPLE_DEVELOPER_ID}'" -fv ${PROJECT_BINARY_DIR}/clementine.app
codesign -s ${APPLE_DEVELOPER_ID} -fv ${PROJECT_BINARY_DIR}/clementine.app
VERBATIM
)
endif()