I have been experimenting with TextMate as an alternative editor. The run
shortcut is fantastic for testing ideas quickly and easily. I have installed boost via homebrew and the run
function will happily find, include and build simple projects with headers such as boost/lexical_cast.hpp
. Great!
I now want to build a project that needs to be linked against boost_system-mt
. Is there a simple way I can add this linker step to a textmate project?
EDIT
Ok. I can get this to work if I add -lboost_system-mt
to the Run command in the bundle editor, but I can't fathom how to link this to a single project.