Describe the bug
When I try to use CPack on my project (after adding Redis++ using FetchContent), it now tries to build a Debian package.
Could add the CPack area inside a guard so it is only built when Redis++ is a top-level project? This prevents it from being added when using FetchContent.
if(PROJECT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
include(CPack)
endif()