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

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