-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b35086a
commit 1ef1bba
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,4 +95,15 @@ endforeach() | |
if(CMAKE_BUILD_TYPE MATCHES Debug) | ||
add_custom_target("coverage") | ||
add_custom_command(TARGET "coverage" COMMAND gcov ${CMAKE_BINARY_DIR}/CMakeFiles/sdr_serverLib.dir/src/*.c.o ${CMAKE_BINARY_DIR}/CMakeFiles/test_core.dir/test/*.c.o) | ||
endif() | ||
endif() | ||
|
||
set(CPACK_GENERATOR "DEB") | ||
set(CPACK_DEBIAN_PACKAGE_NAME "sdr-server") | ||
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libvolk2.4, librtlsdr2 (>= 0.5.4), libconfig9, zlib1g") | ||
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Andrey Rodionov <[email protected]>") | ||
set(CPACK_DEBIAN_PACKAGE_DESCRIPTION "High performant TCP server for rtl-sdr") | ||
set(CPACK_DEBIAN_PACKAGE_SECTION "comm") | ||
set(CPACK_DEBIAN_PACKAGE_HOMEPAGE "https://github.com/dernasherbrezon/sdr-server") | ||
set(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA "${CMAKE_CURRENT_SOURCE_DIR}/debian/postinst;${CMAKE_CURRENT_SOURCE_DIR}/debian/prerm") | ||
set(CPACK_DEBIAN_DEBUGINFO_PACKAGE ON) | ||
include(CPack) |