How to use Boost C++ library with Omnet++ -
i trying use boost c++ library omnet++ project. installed boost library version 1_58_0 in windows. whenever try build omnet++ project shows error -
cannot find -lboost_filesystem_mt cannot find -lboost_system_mt
please let me know how resolve this. or perhaps may wrong in installing , linking boost omnet++. let me know correct way in windows.
you should files libboost_system_mt.a
, libboost_filesystem_mt.a
on drive. if these files exist (for example in c:\boost_1_58_0\lib
), in omnet++ go project properties, omnet++
| makemeke
| check directory sources | options
| custom
| makefrag
, , add path *.a libraries, example:
libs += -lc:/boost_1_58_0/lib
note here should use /
symbol in path.
Comments
Post a Comment