Created Build and install (markdown)
This commit is contained in:
parent
dfaa642200
commit
fc9bbaea0e
1 changed files with 47 additions and 0 deletions
47
Build-and-install.md
Normal file
47
Build-and-install.md
Normal file
|
@ -0,0 +1,47 @@
|
|||
**In-progress**
|
||||
|
||||
## Dependencies
|
||||
|
||||
* [CMake](https://cmake.org/)
|
||||
|
||||
**Mac**
|
||||
|
||||
* [Xcode Command Line Tools](https://developer.apple.com/xcode/) (_xcode-select --install_ from a terminal)
|
||||
|
||||
**Windows**
|
||||
|
||||
* [MSYS2](https://www.msys2.org/)
|
||||
* [Visual Studio Build Tools](https://visualstudio.microsoft.com/downloads/)
|
||||
|
||||
## Build
|
||||
|
||||
For building akvirtualcamera, open a terminal and run the following commands:
|
||||
|
||||
**Mac**
|
||||
|
||||
```
|
||||
cmake -S /path/to/akvirtualcamera -B /path/to/akvirtualcamera-build-directory
|
||||
make -C /path/to/akvirtualcamera-build-directory
|
||||
```
|
||||
|
||||
**MSYS2**
|
||||
|
||||
```
|
||||
cmake -G "MSYS Makefiles" -S /path/to/akvirtualcamera -B /path/to/akvirtualcamera-build-directory
|
||||
make -C /path/to/akvirtualcamera-build-directory
|
||||
```
|
||||
|
||||
**Visual Studio**
|
||||
|
||||
```
|
||||
cmake -G "Visual Studio 16 2019" -S /path/to/akvirtualcamera -B /path/to/akvirtualcamera-build-directory
|
||||
cmake --build /path/to/akvirtualcamera-build-directory
|
||||
```
|
||||
|
||||
You can also compile akvirtualcamera using [cmake-gui](https://cmake.org/cmake/help/latest/guide/user-interaction/index.html#cmake-gui-tool).
|
||||
|
||||
## Install
|
||||
|
||||
**Mac**
|
||||
|
||||
**Windows**
|
Loading…
Reference in a new issue