added sh tagging to the README

also made the install bash script executable
This commit is contained in:
pyro57000
2025-03-14 11:46:02 -05:00
parent bebb710518
commit 9c7ee4d847
2 changed files with 23 additions and 2 deletions

21
HMD setup/install_stardust.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/bash
echo "make sure you have the dependencies installed first!"
mkdir stardust
cd stardust
git clone -b dev https://github.com/StardustXR/server.git
git clone -b dev https://github.com/StardustXR/flatland.git
git clone -b dev https://github.com/StardustXR/non-spatial-input.git
git clone -b dev https://github.com/StardustXR/protostar.git
cd server
cargo build --release || cargo build --release
cd ../flatland
cargo build --release
cd ../protostar
cargo build --release
cd ../non-spatial-input/simular
cargo build --release
cd ../manifold
cargo build --release
cd ../../
echo "Assuming no error occured you should be good to go!"

View File

@@ -173,7 +173,7 @@ git clone -b dev https://github.com/StardustXR/protostar.git
Once we have all of these download we'll need to compile them. Once we have all of these download we'll need to compile them.
``` ```sh
cd flatland cd flatland
cargo build --release cargo build --release
cd ../protostar cd ../protostar
@@ -182,7 +182,7 @@ cargo build --release
these are the same procedure as the server, but non-spatial-inputs needs a bit of special sauce. To compile what we need for that do the following: these are the same procedure as the server, but non-spatial-inputs needs a bit of special sauce. To compile what we need for that do the following:
``` ```sh
cd non-spatial-input cd non-spatial-input
cd simular cd simular
cargo build --release cargo build --release