I've finally managed to build my project using eclipse, c++ and boost but when I run the program I get:
~/workspace/HelloWorld/Debug/HelloWorld: error while loading shared libraries:
libboost_regex.so.1.54.0: cannot open shared object file: No such file or directory
Obviously I don't want it to link to such a specific version and if possible don't have shared libraries at all when building the file.
How do I use a more generic name even though I've installed the latest boost manually and/or can or should I link it statically into my binary instead?