- To compile the project, SDL-1.2, SDL_image-1.2 and SDL_gfx are needed. It will not compile with SDL2 !
- To compile the doc, Doxygen (at least 1.8.3) is needed.
- To compile the project, go to the root and type
make. - To compile the tests, go to the root and type
make test. - To compile the doc, go to the root and type
make doc.
To install the project, go to the root and type make install. This will install the server and the clients in the directory install.
-
To run the project, go to the install directory after you ran
make installand run./server [-g] [FILES]. Option-gis to enable graphical interface andFILESare the paths of the clients you want to load.- ex:
./server ./client_random.so ./client_human.so - ex2:
./server -g ./client_*.so
- ex:
-
To run the tests, go to the tst directory after you ran
make testand type./test_XwhereXis the test you want to run (ex: test_road).