adding in initial boilerplate for client and server

This commit is contained in:
talksik
2024-01-27 09:48:27 -08:00
commit c7fad6be8e
9 changed files with 258 additions and 0 deletions
Executable
+18
View File
@@ -0,0 +1,18 @@
#!/bin/sh
set -e
cd client/
rm -rf build/
mkdir -p build/
cd build
# Build the project
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug ..
make
cp ./compile_commands.json ../
./HomechatClient