Replace "\" with "/"

This commit is contained in:
WarmUpTill 2022-09-01 20:08:58 +02:00 committed by WarmUpTill
parent 9e2ca1529c
commit ad4c41c1dd

View File

@ -42,9 +42,9 @@ The easiest way to set this up is to call the corresponding CI scripts, as they
| Platform | Command |
| ----------- | ----------- |
| Windows | `.\.github\scripts\Build-Windows.ps1` |
| Linux | `.\.github\scripts\build-linux.sh` |
| MacOS | `.\.github\scripts\build-macos.zsh` |
| Windows | `./.github/scripts/Build-Windows.ps1` |
| Linux | `./.github/scripts/build-linux.sh` |
| MacOS | `./.github/scripts/build-macos.zsh` |
Alternatively you can download the OBS dependencies from https://github.com/obsproject/obs-deps/releases and manually configure and start the build.
@ -63,9 +63,9 @@ Finally, start the plugin build using your provided generator. (E.g. Ninja on Li
Contributions to the plugin are always welcome and if you need any assistance do not hesitate to reach out.
In general changes in the `src\legacy` folder should be avoided.
In general changes in the `src/legacy` folder should be avoided.
If you would like to expand upon the macro system by adding a new condition or action type have a loot at the examples in `src\macro-core`.
If you would like to expand upon the macro system by adding a new condition or action type have a loot at the examples in `src/macro-core`.
The key functions to add conditions or are the Register() functions.
```
@ -79,5 +79,5 @@ MacroActionFactory::Register(
);
```
If your intention is to add macro functionality which depends on external libraries, which is likely not to exist on all user setups, try to follow the examples under `src\macro-external`.
If your intention is to add macro functionality which depends on external libraries, which is likely not to exist on all user setups, try to follow the examples under `src/macro-external`.
These are basically plugins themselves that get attempted to be loaded on startup of the advanced scene switcher.