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 3.7KB

7 years ago
6 years ago
6 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
6 years ago
7 years ago
7 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. # Rack
  2. *Rack* is the engine for the VCV open-source virtual modular synthesizer.
  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?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc) is the official developer's forum
  6. Bug reports, feature requests, questions, and discussions are welcome on the GitHub Issue Tracker for all repos under the VCVRack organization.
  7. However, please search before posting to avoid duplicates, and limit to one issue per post.
  8. Please vote on feature requests by using the Thumbs Up/Down reaction on the first post.
  9. I rarely accept code contributions to Rack itself, so please notify me in advance if you wish to send a pull request.
  10. ## Setting up your development environment
  11. Before building Rack, you must install build dependencies provided by your system's package manager.
  12. Rack's own dependencies (GLEW, glfw, etc) do not need to be installed on your system, since specific versions are compiled locally during the build process.
  13. However, you need proper tools to build Rack and these dependencies.
  14. ### Mac
  15. Install [Xcode](https://developer.apple.com/xcode/).
  16. Using [Homebrew](https://brew.sh/), install the build dependencies.
  17. ```
  18. brew install git wget cmake autoconf automake libtool
  19. ```
  20. ### Windows
  21. Install [MSYS2](http://www.msys2.org/) and launch the MinGW 64-bit shell (not the default MSYS shell).
  22. ```
  23. pacman -S git wget make tar unzip zip mingw-w64-x86_64-gcc mingw-w64-x86_64-cmake autoconf automake mingw-w64-x86_64-libtool
  24. ```
  25. ### Linux
  26. On Ubuntu 16.04:
  27. ```
  28. sudo apt install git curl cmake libx11-dev libglu1-mesa-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev zlib1g-dev libasound2-dev libgtk2.0-dev libjack-jackd2-dev
  29. ```
  30. On Arch Linux:
  31. ```
  32. pacman -S git wget gcc make cmake tar unzip zip curl
  33. ```
  34. ## Building
  35. *If the build fails for you, please report the issue with a detailed error message to help the portability of Rack.*
  36. Clone this repository with `git clone https://github.com/VCVRack/Rack.git` and `cd Rack`.
  37. Make sure there are no spaces in your absolute path, as this breaks many build systems.
  38. Clone submodules.
  39. git submodule update --init --recursive
  40. Build dependencies locally.
  41. You may add `-j$(nproc)` to your make commands to parallelize builds across all CPU cores.
  42. make dep
  43. Build Rack.
  44. make
  45. Run Rack.
  46. make run
  47. ## Building plugins
  48. Be sure to check out and build the version of Rack you wish to build your plugins against.
  49. You must clone the plugin in Rack's `plugins/` directory, e.g.
  50. cd plugins
  51. git clone https://github.com/VCVRack/Fundamental.git
  52. Clone submodules.
  53. cd Fundamental
  54. git submodule update --init --recursive
  55. Build plugin.
  56. make dep
  57. make
  58. ## Licenses
  59. All **source code** in this repository is licensed under [BSD-3-Clause](LICENSE.txt) by [Andrew Belt](https://andrewbelt.name/).
  60. **Component Library graphics** in `res/ComponentLibrary` are licensed under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/) by [Grayscale](http://grayscale.info/). Commercial plugins must request a commercial license to use Component Library graphics by emailing contact@vcvrack.com.
  61. **Core panel graphics** in `res/Core` are copyright © 2017 Grayscale. You may not create derivative works of Core panels.
  62. The **VCV logo and icon** are copyright © 2017 Andrew Belt and may not be used in derivative works.
  63. The **"VCV" name** is trademarked and may not be used for unofficial products. However, it is acceptable to use the phrase "for VCV Rack" for promotion of your Rack plugin. For all other purposes, email contact@vcvrack.com.