2024-07-29 22:20:30 +00:00
|
|
|
#!/bin/env sh
|
|
|
|
|
2024-09-25 16:51:39 +00:00
|
|
|
if [ "$1" = "web" ]; then
|
2024-10-08 07:21:59 +00:00
|
|
|
emcmake cmake -B .build-web "${@:2}" && cmake --build .build-web --parallel
|
2024-09-16 06:07:01 +00:00
|
|
|
else
|
2024-10-08 07:21:59 +00:00
|
|
|
cmake -B .build "$@" && cmake --build .build --parallel
|
2024-09-16 06:07:01 +00:00
|
|
|
fi
|