Difference between revisions of "Used boost libraries"

From KlayGE
Jump to: navigation, search
Line 8: Line 8:
 
*Program Options (Only used in [[toolset]])
 
*Program Options (Only used in [[toolset]])
 
*'''Regex''' (Only used in [[toolset]])
 
*'''Regex''' (Only used in [[toolset]])
*'''System'''
+
*'''System''' (Not used directly. No dependency on VC11+)
 
*Test (Only used in test)
 
*Test (Only used in test)
 
*'''Thread'''
 
*'''Thread'''
Line 19: Line 19:
 
*Container/flat_map
 
*Container/flat_map
 
*'''Foreach'''
 
*'''Foreach'''
*'''Function'''
 
 
*Functional/Hash
 
*Functional/Hash
 
*Lexical Cast
 
*Lexical Cast

Revision as of 22:28, 8 July 2015

Much code in KlayGE depend on Boost. Here's the list of used libraries.

The used Boost libraries that must be built separately:

  • Atomic
  • Chrono
  • Date Time (Not used directly. No dependency on VC11+)
  • Filesystem (Can be replaced by Filesystem TS's on VC11+)
  • Program Options (Only used in toolset)
  • Regex (Only used in toolset)
  • System (Not used directly. No dependency on VC11+)
  • Test (Only used in test)
  • Thread

Header-only Boost libraries:

  • Algorithm/string
  • Any (Library fundamentals TS)
  • Assert
  • Circular Buffer
  • Container/flat_map
  • Foreach
  • Functional/Hash
  • Lexical Cast
  • Lock free
  • Member Function
  • Operators
  • Optional (Library fundamentals TS)
  • Signals2
  • Smart Ptr
  • Utility/noncopyable

Items marked as bold font can be replaced by features in C++11. Along with the popularize of C++11-supported compiler, those libraries are switched to C++11's. Boost libraries are used only when necessary.