https://github.com/kottv/kmidimon
import of https://sourceforge.net/projects/kmidimon/
https://github.com/kottv/kmidimon
Last synced: 3 months ago
JSON representation
import of https://sourceforge.net/projects/kmidimon/
- Host: GitHub
- URL: https://github.com/kottv/kmidimon
- Owner: KottV
- License: gpl-2.0
- Created: 2020-06-08T10:03:09.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-20T06:15:21.000Z (almost 5 years ago)
- Last Synced: 2025-01-20T17:50:26.243Z (5 months ago)
- Language: C++
- Homepage:
- Size: 2.01 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
For brief building instructions, see INSTALL.
Developers environment
======================You need the following software:
* CMake
Debian: "cmake"
http://packages.debian.org/sid/cmake
* pkg-config
Debian: "pkg-config"
http://packages.debian.org/sid/pkg-config
* Qt4 libraries
Debian: "libqt4-dev"
http://packages.debian.org/sid/libqt4-dev
* KDE4 SDK and libraries
Debian: "kdesdk", "kdelibs5-dev"
http://packages.debian.org/sid/kdesdk
http://packages.debian.org/sid/kdelibs5-dev* ALSA library
Debian package: "libasound2-dev"
http://packages.debian.org/sid/libasound2-dev* DBus-1 library
Debian package: "libdbus-1-dev"
http://packages.debian.org/sid/libdbus-1-devGetting the development sources
===============================Compiling and hacking the SVN sources is a bit different compared to the
distribution tarball. You can get the latest sources either using a sourceforge
user account, or the anonymous user (with read only rights). The SVN client
documentation for SourceForge users is available at:
http://p.sf.net/sourceforge/svn1. Check out the module Drumstick from the SVN repository.
Host: drumstick.svn.sourceforge.net
Path: /svnroot/drumstick/trunk
Module: drumstickexample:
$ svn co https://drumstick.svn.sourceforge.net/svnroot/drumstick/trunk drumstick2. Check out the module kmidimon from the SVN repository.
Host: kmidimon.svn.sourceforge.net
Path: /svnroot/kmidimon/trunk
Module: kmidimonexample:
$ svn co https://kmidimon.svn.sourceforge.net/svnroot/kmidimon/trunk kmidimon3. Create the links for 'drumstick' in the kmidimon directory.
$ cd kmidimon
$ ./link-drumstickThe module 'drumstick' is also used by other projects in a similar way.
It will become an independent shared library some future day.4. Configure and compile
$ cmake . -DCMAKE_BUILD_TYPE=debug -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix`
$ make VERBOSE=15. Hack and enjoy!