Remove the install target from updater

Since this is usually built in the context of a larger project,
the outer project will want to control where the updater is installed
to.

MD-19678 #time 5m
This commit is contained in:
Robert Knight 2013-09-04 18:31:38 +01:00
parent 4df97c84e1
commit 465788b400

View file

@ -134,8 +134,6 @@ if (SIGN_UPDATER)
add_custom_command(TARGET updater POST_BUILD COMMAND ${BINARY_SIGNING_TOOL} $<TARGET_FILE:updater>) add_custom_command(TARGET updater POST_BUILD COMMAND ${BINARY_SIGNING_TOOL} $<TARGET_FILE:updater>)
endif() endif()
install(TARGETS updater RUNTIME DESTINATION bin)
add_executable(zip-tool zip-tool.cpp) add_executable(zip-tool zip-tool.cpp)
target_link_libraries(zip-tool updatershared) target_link_libraries(zip-tool updatershared)