-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change paths and CMakeLists details so pmdefaults works on Linux.
- Loading branch information
1 parent
14b6fbb
commit d05eb81
Showing
3 changed files
with
45 additions
and
7 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
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
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 |
---|---|---|
@@ -1 +1,8 @@ | ||
java -Djava.library.path=../../Release:../../Debug -jar pmdefaults.jar > /dev/null | ||
#!/bin/sh | ||
# Run PmDefaults, the GUI to select default MIDI input and output for PortMidi | ||
# Due to the locations of the .jar file and libpmjni, this script only runs | ||
# from <portmidi-repo-path>/pm_java/pmdefaults. PmDefaults is minimally | ||
# supported -- if you would like it to appear as an app on your desktop, | ||
# contact the developer(s) and let us know it's actually being used. | ||
# library path here includes directory locations for macOS and Linux. | ||
java -Djava.library.path=../../Release:../../Debug:../.. -jar pmdefaults.jar > /dev/null |