From dc8c1d600a4a86ed90656597d1c89ee776924057 Mon Sep 17 00:00:00 2001 From: "Eduardo P. Gomez" Date: Thu, 21 Sep 2023 02:23:17 -0300 Subject: [PATCH] Update CONTRIBUTING.md --- CONTRIBUTING.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9cfe0160..e068eaba 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,5 @@ # Contributing -This guide shows how to prepare your environment to contribute for OpenDX. +This guide shows how to prepare your environment to contribute for OpenDX's DirectX reimplementation. ## Dependencies `./build.sh` detect and try to install the dependencies for you, but if you want to do it manually, here is the list of dependencies: @@ -15,12 +15,17 @@ This guide shows how to prepare your environment to contribute for OpenDX. ## Building and running These are the same universal steps for cmake: +**Build:** ```sh ./build.sh ``` ----- + +**Run:** ```sh -cd build #for running -./dxdiag #runs dxdiag -./tests/sample #runs test sample -``` \ No newline at end of file +#setups the terminal for better running. +PATH=$PATH:./build/root/usr/bin + +#commands available to run: +dxdiag +sample +```