From ad4c41c1ddca1a80cb3e4c560a0436fb4ee0ee4b Mon Sep 17 00:00:00 2001 From: WarmUpTill Date: Thu, 1 Sep 2022 20:08:58 +0200 Subject: [PATCH] Replace "\" with "/" --- BUILDING.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index 1892c00c..beedf219 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -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.