Skip to content

Commit

Permalink
add deb generation
Browse files Browse the repository at this point in the history
  • Loading branch information
patriciogonzalezvivo committed Aug 10, 2020
1 parent 98e11f8 commit 32e1460
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ else()
endif()

project(midigyver VERSION 0.1
DESCRIPTION "midigyver"
DESCRIPTION "Flexible console program to convert MIDI inputs into OSC using a YAML config file"
LANGUAGES CXX)

set(CMAKE_CXX_STANDARD 11)
Expand Down Expand Up @@ -41,4 +41,12 @@ target_link_libraries(midigyver
)

install(TARGETS midigyver
RUNTIME DESTINATION bin)
RUNTIME DESTINATION bin)

set(CPACK_GENERATOR "DEB")
set(CPACK_DEBIAN_DISPALY_NAME "midigyver")
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Patricio Gonzalez Vivo <[email protected]>")
set(CPACK_DEBIAN_PACKAGE_HOMEPAGE "https://github.com/patriciogonzalezvivo/midigyver")
set(CPACK_DEBIAN_PACKAGE_PRIORITY "optional")
set(CPACK_DEBIAN_PACKAGE_SECTION "multimedia")
INCLUDE(CPack)

0 comments on commit 32e1460

Please sign in to comment.