I use Ubuntu 18.04 and try to compile the example 'money.cpp' file that Gecode brings. I downloaded (gecode-release-5.1.0.tar.gz) and extract it. Then to install Gecode I do the following steps:
(1) ./configure (2) make
I get satisfactory installation.
Then I try to compile money.cpp, like this: $g++ money.cpp
and I get the following error:
fatal error: gecode / driver.hh: No such file or directory #include ^ ~~~~~~~~~~~~~~~~~
I know the problem is that it does not recognize the libraries, but how can I make my .cpp or compile phase recognize them?
regards! Alberto