### ISPBackup CMake Configuration Source: https://github.com/ispsystem/ispbackup/blob/master/CMakeLists.txt This snippet defines the CMake build configuration for the ISPBackup project. It specifies the project name, source files, executable target, and required libraries (z, curl). ```cmake project(ispbackup CXX) set(${PROJECT_NAME}_SRC ispbackup.cpp) add_executable(${PROJECT_NAME} ${${PROJECT_NAME}_SRC}) target_link_libraries(${PROJECT_NAME} z curl) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.