summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-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
```