diff options
| -rw-r--r-- | README.md | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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 ``` |
