https://github.com/yeeking/myk-tracker
Music sequencer with tracker-like properties
https://github.com/yeeking/myk-tracker
Last synced: about 1 month ago
JSON representation
Music sequencer with tracker-like properties
- Host: GitHub
- URL: https://github.com/yeeking/myk-tracker
- Owner: yeeking
- License: mit
- Created: 2024-04-01T15:47:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-18T20:38:38.000Z (12 months ago)
- Last Synced: 2024-06-19T02:39:07.718Z (12 months ago)
- Language: C++
- Size: 16.8 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# myk-tracker
Music sequencer with tracker-like properties## Building it
There is a juce version and a conole version.
Tested on Linux and macos:
```
# linux only
# along with the usual build tools:
sudo apt install libncurses-dev# linux and macos
# to build with cmake
cmake -B build .
cmake --build build --config Release
```Then to run it:
```
# For the command-line version:
# macos, if you downloaded a release, you need to set the lib path:
# disable security if you did not build it yourself:
sudo spctl --master-disable
export DYLD_LIBRARY_PATH=.:./rtmidi:$DYLD_LIBRARY_PATH
./build/MykTracker
# later, can re-enable security
sudo spctl --master-enable
```Or for the juce version, just right click and open the .app which will be built into this folder probably:
```
open build/myk-tracker-plug_artefacts/Standalone
```