Merge branch 'master' into picloud

This commit is contained in:
2020-06-28 09:09:59 +03:00
235 changed files with 22954 additions and 22972 deletions

View File

@@ -1,6 +1,6 @@
message(STATUS "Building pip_remote_console")
add_executable(pip_remote_console "main.cpp")
target_link_libraries(pip_remote_console pip)
target_link_libraries(pip_remote_console pip pip_console)
if (DEFINED LIB)
install(TARGETS pip_remote_console DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
endif ()

View File

@@ -2,7 +2,7 @@ message(STATUS "Building pisd")
file(GLOB CPPS "*.cpp")
file(GLOB HDRS "*.h")
add_executable(pisd ${CPPS} ${HDRS})
target_link_libraries(pisd pip pip_crypt)
target_link_libraries(pisd pip pip_crypt pip_console)
if (DEFINED LIB)
install(TARGETS pisd DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
else()

View File

@@ -1,6 +1,6 @@
message(STATUS "Building pift")
add_executable(pift "main.cpp")
target_link_libraries(pift pip)
target_link_libraries(pift pip pip_console)
if (DEFINED LIB)
install(TARGETS pift DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
else()