2023-06-17 16:25:49 +09:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
## Run this build script at root
|
|
|
|
|
## Ex)
|
|
|
|
|
## $ ./scripts/build.sh
|
|
|
|
|
##
|
|
|
|
|
|
|
|
|
|
CONSOLE_APP=$1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo "build console bin/${CONSOLE_APP}"
|
|
|
|
|
|
|
|
|
|
cd ${CONSOLE_APP}
|
|
|
|
|
|
|
|
|
|
rm -rf .build
|
|
|
|
|
|
2023-06-30 08:50:41 +09:00
|
|
|
swift build -c release --enable-dead-strip
|
2023-06-17 16:25:49 +09:00
|
|
|
|
|
|
|
|
cp ./.build/release/${CONSOLE_APP} ../bin
|
|
|
|
|
|