From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- third_party/rust/cubeb-sys/libcubeb/INSTALL.md | 45 ++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 third_party/rust/cubeb-sys/libcubeb/INSTALL.md (limited to 'third_party/rust/cubeb-sys/libcubeb/INSTALL.md') diff --git a/third_party/rust/cubeb-sys/libcubeb/INSTALL.md b/third_party/rust/cubeb-sys/libcubeb/INSTALL.md new file mode 100644 index 0000000000..4f83a65200 --- /dev/null +++ b/third_party/rust/cubeb-sys/libcubeb/INSTALL.md @@ -0,0 +1,45 @@ +# Build instructions for libcubeb + +You must have CMake v3.14 or later installed. + +1. `git clone --recursive https://github.com/mozilla/cubeb.git` +2. `cd cubeb` +3. `cmake -B ./build .` +4. `cmake --build ./build` +5. `cd build && ctest` + +# Windows build notes + +Windows builds can use Microsoft Visual Studio 2015, Microsoft Visual Studio +2017, or MinGW-w64 with Win32 threads (by passing `cmake -G` to generate the +appropriate build configuration). + +## Microsoft Visual Studio 2015 or 2017 Command Line + +CMake can be used from the command line by following the build steps at the top +of this file. CMake will select a default generator based on the environment, +or one can be specified with the `-G` argument. + +## Microsoft Visual Studio 2017 IDE + +Visual Studio 2017 adds in built support for CMake. CMake can be used from +within the IDE via the following steps: + +- Navigate to `File -> Open -> Cmake...` +- Open `CMakeLists.txt` file in the root of the project. + +Note, to generate the build in the cubeb dir CMake settings need to be updated +via: `CMake -> Change CMake Settings -> CMakeLists.txt`. The default +configuration used by Visual Studio will place the build in a different location +than the steps detailed at the top of this file. + +## MinGW-w64 + +To build with MinGW-w64, install the following items: + +- Download and install MinGW-w64 with Win32 threads. +- Download and install CMake. +- Run MinGW-w64 Terminal from the Start Menu. +- Follow the build steps at the top of this file, but at step 4 run: + `cmake -G "MinGW Makefiles" ../cubeb` +- Continue the build steps at the top of this file. -- cgit v1.2.3