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

This commit is contained in:
2020-03-24 19:53:40 +00:00
parent d1294a43d2
commit 9123b3c857
4 changed files with 445 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
message(STATUS "Building deploy_tool")
file(GLOB CPPS "*.cpp")
file(GLOB HDRS "*.h")
add_executable(deploy_tool ${CPPS} ${HDRS})
target_link_libraries(deploy_tool pip)
if (DEFINED LIB)
install(TARGETS deploy_tool DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
else()
install(TARGETS deploy_tool DESTINATION bin)
endif()