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

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