How boost auto-linking makes choice?

前端 未结 1 577
面向向阳花
面向向阳花 2020-12-10 06:19

When I use Visual Studio 2012, with auto-linking, I don\'t need to add boost / POCO/ python libraries manually, they would be added automatically. And if I miss any library,

相关标签:
1条回答
  • 2020-12-10 06:59

    Visual Studio allows #pragma directives in the source code to set linker options. For "auto-linking", Boost uses these #pragma's in combination with existing macro's.

    In particular, it sounds like you are looking for the BOOST_ALL_DYN_LINK macro.

    0 讨论(0)
提交回复
热议问题