Files
homechat/server.sh
T

19 lines
201 B
Bash
Executable File

#!/bin/sh
set -e
cd server/
rm -rf build/
mkdir -p build/
cd build
# Build the project
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug ..
make
cp ./compile_commands.json ../
./HomechatServer