Imperative programming project.
Morpion is a solitaire game. Rules and goals are explained in 'instructions.pdf'.
These instructions will get you a copy of the project up and running on your local machine.
foo@bar$ git clone https://github.com/GeoffreyDlvl/ENSIIE-morpion.gitThe project runs preferably on a linux machine. The only required tools are GCC, the GNU Compiler Collection, and make, the GNU make utility. They should be installed by default. If they are not, the following linux command will install gcc
foo@bar$ sudo apt install gccAnd this command will install make
foo@bar$ sudo apt install build-essentialTo build the project, simple type the following command on the root of the project
foo@bar$ makeInstalling CUnit
foo@bar$ sudo apt-get install libcunit1 libcunit1-doc libcunit1-devIncluding it in c file
#include <CUnit/CUnit.h>Including it in build
foo@bar$ gcc -o test test.c -lcunitGo to the sources directory and execute the program
foo@bar$ ./morpion- GCC - The GNU Compiler Collection
We use Git for versioning.
- Geoffrey Delval - GeoffreyDlvl
- Rémi Guijarro Espinosa - Remi-Guijarro
- Gabriel Moran - ggabimoran
- Clément Peresse - LTRobot
This project is licensed under the MIT License - see the LICENSE.md file for details