From cd86ef4236457fe80c7c1e5de1041754ac37c944 Mon Sep 17 00:00:00 2001 From: MerryMage Date: Sat, 23 Jul 2016 05:37:07 +0100 Subject: [PATCH] Add -DBOOST_POOL_NO_MT as a compiler flag --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5f0aae0b..edc078f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,13 +7,13 @@ option(DYNARMIC_USE_SYSTEM_BOOST "Use the system boost libraries" ON) # Compiler flags if (NOT MSVC) add_compile_options(--std=c++14 -Wall -Werror -Wextra -pedantic -Wfatal-errors -Wno-unused-parameter -Wno-missing-braces) - add_compile_options(-DBOOST_SYSTEM_NO_DEPRECATED) + add_compile_options(-DBOOST_SYSTEM_NO_DEPRECATED -DBOOST_POOL_NO_MT) if (ARCHITECTURE_x86_64) add_compile_options(-msse4.1) endif() else() add_compile_options(/W3 /MP /Zi /Zo /EHsc /WX) - add_compile_options(/DBOOST_SYSTEM_NO_DEPRECATED) + add_compile_options(/DBOOST_SYSTEM_NO_DEPRECATED /DBOOST_POOL_NO_MT) endif() # This function should be passed a list of all files in a target. It will automatically generate