9 lines
263 B
CMake
9 lines
263 B
CMake
message(STATUS "Building picloud")
|
|
add_executable(picloud "main.cpp")
|
|
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()
|