diff options
author | Transporter <ogre.transporter@gmail.com> | 2020-04-30 20:56:55 +0200 |
---|---|---|
committer | Transporter <ogre.transporter@gmail.com> | 2020-04-30 20:56:55 +0200 |
commit | 18421d59708479e3d54eba71518f761ee470256d (patch) | |
tree | 237f9d7c10869d12c0fa5434e9a51d3a6ece7e36 /CMakeLists.txt | |
parent | 68a49a080cb7b9484b0c8330cf15a99084e5f63f (diff) |
Fix to prevent Boost from linking dynamic and static libraries simultaneously when autolink is enabled.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f3a7e94..871e9b8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -60,6 +60,9 @@ else() endif() include_directories(${Boost_INCLUDE_DIR}) link_directories(${Boost_LIBRARY_DIR_RELEASE}) +if(NOT Boost_USE_STATIC_LIBS) + add_definitions(-DBOOST_ALL_DYN_LINK) +endif() set(LIB_LIST ${CMAKE_THREAD_LIBS_INIT} |