I installed the libevent library. It does not compile
`$ make
g++ -g -O -I ./ -I ./client/ -I ./game/ -I ./logic/ -I ./network/ -I ./util/ --std=c++11 -o Debug/./game/play_game.o -c game/play_game.cpp
In file included from game/play_game.cpp:8:0:
game/play_game.h:13:26: fatal error: event2/event.h: No such file or directory
#include <event2/event.h>
^
compilation terminated.
Makefile:79: recipe for target 'Debug/./game/play_game.o' failed
make: *** [Debug/./game/play_game.o] Error 1
`
This is with the Makefile "as is". How do I modify the Makefile to force it to include the library?
I installed the libevent library. It does not compile
`$ make
g++ -g -O -I ./ -I ./client/ -I ./game/ -I ./logic/ -I ./network/ -I ./util/ --std=c++11 -o Debug/./game/play_game.o -c game/play_game.cpp
In file included from game/play_game.cpp:8:0:
game/play_game.h:13:26: fatal error: event2/event.h: No such file or directory
#include <event2/event.h>
^
compilation terminated.
Makefile:79: recipe for target 'Debug/./game/play_game.o' failed
make: *** [Debug/./game/play_game.o] Error 1
`
This is with the Makefile "as is". How do I modify the Makefile to force it to include the library?