Files
pip/utils/cloud_dispatcher/CMakeLists.txt
2020-06-10 13:14:16 +03:00

11 lines
316 B
CMake

message(STATUS "Building picloud")
file(GLOB CPPS "*.cpp")
file(GLOB HDRS "*.h")
add_executable(picloud ${CPPS} ${HDRS})
target_link_libraries(picloud pip pip_cloud)
if (DEFINED LIB)
install(TARGETS picloud DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
else()
install(TARGETS picloud DESTINATION bin)
endif()