This repository has been archived on 2023-04-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
defend-together/server/build.sh

10 lines
162 B
Bash
Executable File

#!/bin/sh
mkdir -p builds
# Remove old version
if [ -f builds/server.out ]; then
rm builds/server.out
fi
g++ main.cpp -o builds/server.out -lenet -lpthread