# Optionally compile with thread sanitizer enabled to find concurrency bugs # https://github.com/google/sanitizers/wiki/ThreadSanitizerCppManual # Add optional sanitizer, off by default option(THREAD_SANITIZER "Add thread sanitizer" OFF) if(THREAD_SANITIZER) add_compile_options(-fsanitize=thread -g) add_link_options(-fsanitize=thread) endif() message("-- Thread Sanitizer: ${THREAD_SANITIZER}")