-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
98e11f8
commit 32e1460
Showing
1 changed file
with
10 additions
and
2 deletions.
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 |
---|---|---|
|
@@ -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) | ||
|
@@ -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) |