Merge tag 'v0.1.1' into develop
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
v0.1.1
This commit is contained in:
commit
c0f4753213
1 changed files with 13 additions and 1 deletions
|
@ -34,7 +34,19 @@ target_link_libraries(igmpgen ${LIBNET_LIBRARY})
|
||||||
install(TARGETS igmpgen DESTINATION bin)
|
install(TARGETS igmpgen DESTINATION bin)
|
||||||
|
|
||||||
# Install the man page
|
# Install the man page
|
||||||
install(FILES misc/igmpgen.man.1 DESTINATION share/man/man1 RENAME igmpgen.1)
|
include(GNUInstallDirs)
|
||||||
|
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/misc/)
|
||||||
|
file(
|
||||||
|
ARCHIVE_CREATE
|
||||||
|
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/misc/igmpgen.1.gz
|
||||||
|
PATHS ${CMAKE_CURRENT_SOURCE_DIR}/misc/igmpgen.man.1
|
||||||
|
FORMAT raw
|
||||||
|
COMPRESSION GZip
|
||||||
|
)
|
||||||
|
install(
|
||||||
|
FILES ${CMAKE_CURRENT_BINARY_DIR}/misc/igmpgen.1.gz
|
||||||
|
TYPE MAN
|
||||||
|
)
|
||||||
|
|
||||||
# Include CPack for packaging
|
# Include CPack for packaging
|
||||||
include(InstallRequiredSystemLibraries)
|
include(InstallRequiredSystemLibraries)
|
||||||
|
|
Loading…
Reference in a new issue