You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 2.9KB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. # Rack
  2. *Rack* is the engine for the VCV open-source virtual Eurorack DAW.
  3. ![Rack screenshot](https://vcvrack.com/images/screenshot.png)
  4. This README includes instructions for building Rack from source. For information about the software, go to https://vcvrack.com/.
  5. ## The [Issue Tracker](https://github.com/VCVRack/Rack/issues) *is* the official developer's forum
  6. Bug reports, feature requests, and even *questions/discussions* are welcome on the GitHub Issue Tracker for all VCVRack repos.
  7. However, please search before posting to avoid duplicates, and limit to one issue per post.
  8. You may vote on feature requests by using the Thumbs Up/Down reaction on the first post.
  9. I rarely accept Pull Requests, so please notify me in advance to plan your contribution before writing code.
  10. ## Setting up your development environment
  11. Rack's dependencies (GLEW, glfw, etc) do not need to be installed on your system, since specific versions are compiled locally during the build process. However, you need proper tools to build these dependencies.
  12. ### Mac
  13. Install [Xcode](https://developer.apple.com/xcode/).
  14. Install [CMake](https://cmake.org/) (for some of Rack's dependencies) and wget, preferably from [Homebrew](https://brew.sh/).
  15. ### Windows
  16. Install [MSYS2](http://www.msys2.org/) and launch the mingw64 shell (not the default msys2 shell).
  17. Install build dependencies with the pacman package manger.
  18. pacman -S git make tar unzip mingw-w64-x86_64-gcc mingw-w64-x86_64-cmake
  19. ### Linux
  20. With your distro's package manager, make sure you have installed `gcc`, `make`, `cmake`, `tar`, and `unzip`.
  21. ## Building
  22. *If the build fails for you, please report the issue with a detailed error message to help the portability of Rack.*
  23. Clone this repository with `git clone https://github.com/VCVRack/Rack.git` and `cd Rack`.
  24. If you would like to build a previous version of Rack instead of the master branch, check out the desired tag with `git checkout v0.4.0` for example.
  25. Clone submodules.
  26. git submodule update --init --recursive
  27. Build dependencies locally.
  28. You may use make's `-j$(nproc)` flag to parallelize builds across all your CPU cores.
  29. make dep
  30. You should see a message that all dependencies built successfully.
  31. Build Rack.
  32. make
  33. Run Rack.
  34. make run
  35. ## Building plugins
  36. Be sure to check out and build the version of Rack you wish to build your plugins against.
  37. You must clone the plugin in Rack's `plugins/` directory, e.g.
  38. cd plugins
  39. git clone https://github.com/VCVRack/Fundamental.git
  40. Clone submodules.
  41. cd Fundamental
  42. git submodule update --init --recursive
  43. Build plugin.
  44. make
  45. ## License
  46. Source code licensed under [BSD-3-Clause](LICENSE.txt) by [Andrew Belt](https://andrewbelt.name/)
  47. Component Library graphics in `res/ComponentLibrary` licensed under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/) by [Grayscale](http://grayscale.info/)
  48. VCV logo is © 2017