mirror of
https://github.com/RGBCube/serenity
synced 2025-10-29 01:02:07 +00:00
8 lines
145 B
Bash
Executable file
8 lines
145 B
Bash
Executable file
#!/bin/sh
|
|
|
|
script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
|
|
cd "$script_path" || exit 1
|
|
mkdir -p build
|
|
cd build || exit 1
|
|
cmake ..
|
|
make js
|