Adding unit test for reentrancy

This commit is contained in:
Michael Tryby
2018-09-04 09:38:44 -04:00
parent fdca2bef42
commit b7e9988b15
6 changed files with 754 additions and 1 deletions

View File

@@ -18,7 +18,13 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
#Prep ourselves for compiling boost
find_package(Boost REQUIRED)
if(MSVC)
set(Boost_DEBUG OFF)
set(Boost_DETAILED_FAILURE_MSG OFF)
set(Boost_USE_STATIC_LIBS ON)
endif(MSVC)
set(Boost_THREAD_FOUND OFF)
find_package(Boost COMPONENTS thread)
include_directories (${Boost_INCLUDE_DIRS})