diff --git a/CMakeLists.txt b/CMakeLists.txt index 06277e2..a7d8c27 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,6 +10,8 @@ if(TUTTLE_PRODUCTION) add_definitions(-DTUTTLE_PRODUCTION) endif() +add_definitions(-DWITHOUT_BOOST_LOG) + # Create an alias for all OFX plugins. add_custom_target(ofxplugins) diff --git a/cmake/UseTuttleBoost.cmake b/cmake/UseTuttleBoost.cmake index d38cef7..14d7daa 100644 --- a/cmake/UseTuttleBoost.cmake +++ b/cmake/UseTuttleBoost.cmake @@ -2,9 +2,8 @@ # Boost for the whole Tuttle project set(Boost_USE_STATIC_LIBS OFF) -add_definitions(-DBOOST_LOG_DYN_LINK) find_package(Boost 1.53.0 - COMPONENTS regex date_time chrono thread serialization system filesystem atomic log program_options timer QUIET) + COMPONENTS regex date_time chrono thread serialization system filesystem atomic program_options timer QUIET) if (Boost_FOUND) set(TuttleBoost_FOUND 1)