From 882840157fcaeff9cd554cf68cfb9840eebc9482 Mon Sep 17 00:00:00 2001 From: kaixoo <21697330-kaixoo@users.noreply.gitlab.com> Date: Sat, 21 Dec 2024 11:55:09 +0200 Subject: [PATCH] docs: add comment on how to run Friction --- BUILD.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/BUILD.md b/BUILD.md index 8fa7c2ad8..0c583c9f8 100644 --- a/BUILD.md +++ b/BUILD.md @@ -115,6 +115,12 @@ Now build: cmake --build . --config Release ``` +And finally run (from build directory): + +``` +./src/app/friction +``` + ## Build on Windows All requirements must be installed in the correct folders, this is an example and should be adjusted to fit your environment. @@ -132,3 +138,9 @@ cmake -G "Visual Studio 15 2017" -A x64 -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFI cmake --build . --config Release ``` + +And finally run (from build directory): + +``` +.\src\app\friction.exe +```