Add basic CPack Debian package generation support.
Some checks failed
Build / get-source-code (push) Blocked by required conditions
Build / build-appimage (push) Blocked by required conditions
Build / build-android (push) Blocked by required conditions
Build / build-windows (push) Blocked by required conditions
Build / build-gentoo (push) Failing after 1m2s
Build / download-system-deps (push) Has been cancelled

This commit is contained in:
Zachary Hall 2024-12-17 11:06:54 -08:00
parent cf4643e1b3
commit 9e60b7cac7

View file

@ -609,3 +609,7 @@ if(TESTS)
target_link_libraries(liblooper PUBLIC gtest_main) target_link_libraries(liblooper PUBLIC gtest_main)
target_compile_definitions(liblooper PUBLIC TESTS) target_compile_definitions(liblooper PUBLIC TESTS)
endif() endif()
set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON)
set(CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS ON)
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Catmeow72")
include(CPack)