summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2025-12-17 14:59:48 -0800
committeryum <yum.food.vr@gmail.com>2025-12-17 14:59:48 -0800
commit83f9f78d2c0026daf008ddff4fa3800991362410 (patch)
treec398fca7aebaf303fea21a1765f8f442395bc2f0
parent30c5fa6808b9a71a47d9e89ad090a824d8ea48c3 (diff)
update readmeHEADmaster
-rw-r--r--README.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/README.md b/README.md
index a2e67c5..4519c4b 100644
--- a/README.md
+++ b/README.md
@@ -28,11 +28,13 @@ git submodule update --init --recursive -j 32
# wait, the previous command takes a while
mkdir build
cd build
-powershell.exe cmake.exe ..
-powershell.exe cmake.exe --build . -j 32 --config Release
+cmake.exe ..
+cmake.exe --build . -j 32 --config Release
# the previous command will take a long fucking time
cd ../..
-# do this in wsl2 or powershell. Showing wsl2/bash syntax.
+# if in powershell, do this:
powershell.exe ./build.ps1 && ./dist/modular_slang.exe ./demo.slang
+# if in bash, do this:
+./build.sh && ./dist/modular_slang.exe ./demo.slang
```