From 5ce0163f77be3be58dafa7a81cbffcbe2481376f Mon Sep 17 00:00:00 2001 From: Alex Huddleston Date: Tue, 27 Oct 2015 20:24:07 -0500 Subject: [PATCH] Update README.md Added notes for compiling with makefile and for server and client only. --- README.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ac4fdc5..cc5f158 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,20 @@ # Breakthrough Reposity for the second CSCE 315 project -compile the server with the folling command: -g++ -std=c++11 -o server Board.cpp Server.cpp +compile test.cpp main by typing: +make all run: -./server [port] +./test -Client is still WIP. +Will make separate commands for server/client in the future, for now: +g++ -std=c++11 -o server server.cpp Board.cpp Engine.cpp Piece.cpp + +to compile the server, then: +./server + +Client is still WIP, test by compiling with: +g++ -std=c++11 -o client client.cpp Board.cpp Engine.cpp Piece.cpp + +run: +./client