Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
Qt Creator FAQ showing how to linking against a library in Qt Creator under Ubuntu.
In the Qt Creator project file, add the following line, to link against the Boost.Regex library:
LIBS += -L/usr/lib -lboost_regex |
Note that this example assumes that a file called 'libboost.a' or 'libboost.so' (I do not know where it exactly links against) exists in the /usr/lib folder (if not, you can easily install Boost from the Ubuntu Software Center).
The Hello Boost program shows how to link against the Boost library Boost.Regex under both Ubuntu and Windows:
unix:LIBS += -L/usr/lib -lboost_regex |
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.