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.5KB

7 years ago
7 years ago
7 years ago
7 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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.
  8. You may vote on feature requests by using the Thumbs Up/Down reaction on the first post.
  9. ## Setting up your development environment
  10. 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.
  11. ### Mac
  12. Install [Xcode](https://developer.apple.com/xcode/).
  13. Install [CMake](https://cmake.org/) and wget, preferably from [Homebrew](https://brew.sh/).
  14. ### Windows
  15. Install [MSYS2](http://www.msys2.org/) and launch the mingw64 shell (not the default msys2 shell).
  16. Install build dependencies with the pacman package manger.
  17. pacman -S git make tar unzip mingw-w64-x86_64-gcc mingw-w64-x86_64-cmake
  18. ### Linux
  19. With your distro's package manager, make sure you have installed `gcc`, `make`, `cmake`, `tar`, and `unzip`.
  20. ## Building
  21. *If the build fails for you, please report the issue with a detailed error message to help the portability of Rack.*
  22. Clone this repository and `cd` into it.
  23. If you would like to build a previous version instead of the master branch, run `git checkout v0.3.2` for example.
  24. Clone submodules.
  25. git submodule update --init --recursive
  26. Build dependencies locally.
  27. You may use make's `-j$(nproc)` flag to parallelize builds across all your CPU cores.
  28. make dep
  29. You should see a message that all dependencies built successfully.
  30. Build Rack.
  31. make
  32. Run Rack.
  33. make run
  34. ## Building plugins
  35. Clone your favorite plugin in the `plugins/` directory. e.g.:
  36. cd plugins
  37. git clone https://github.com/VCVRack/Fundamental.git
  38. Clone submodules.
  39. cd Fundamental
  40. git submodule update --init --recursive
  41. Build plugin.
  42. make
  43. ## License
  44. Rack source code by [Andrew Belt](https://andrewbelt.name/) licensed under the [BSD-3-Clause](LICENSE.txt)
  45. Component Library graphics by [Grayscale](http://grayscale.info/) licensed under the [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/)