git-svn-id: svn://db.shs.com.ru/pip@992 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2020-03-26 14:40:51 +00:00
parent 63ac3161dd
commit 0be9c0a34b
3 changed files with 26 additions and 7 deletions

View File

@@ -1,7 +1,13 @@
message(STATUS "Building deploy_tool")
file(GLOB CPPS "*.cpp")
file(GLOB HDRS "*.h")
add_executable(deploy_tool ${CPPS} ${HDRS})
import_version(deploy_tool pip)
set_deploy_property(deploy_tool
LABEL "PIP deploy tool"
FULLNAME "${_PIP_DOMAIN}.deploy_tool"
COMPANY "${_PIP_COMPANY}"
INFO "Platform-Independent Primitives")
make_rc(deploy_tool _RC)
file(GLOB SRC "*.cpp" "*.h")
add_executable(deploy_tool ${SRC} ${_RC})
target_link_libraries(deploy_tool pip)
if (DEFINED LIB)
install(TARGETS deploy_tool DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)