I installed the json spirit library on my linux mint machine using sudo apt-get install libjson-spirit-dev. However when I compile my code, I get this error saying:
/usr/include/json_spirit_writer.h:14:40: fatal error: json_spirit_writer_options.h: No such file or directory compilation terminated.
This traces back to this line of code in my program: #include <json_spirit.h>
I am assuming there is some issue with the library I installed? I uninstalled and then reinstalled the library but that did not seem to work. Any ideas on how to fix this problem?
Help would be much appreciated!