Fix TSAN CMake option

The wrong variable was set.
This commit is contained in:
Markus Mäkelä 2020-02-07 08:36:02 +02:00
parent 791d2ade99
commit 0b21544693
No known key found for this signature in database
GPG Key ID: 5CE746D557ACC499

View File

@ -21,7 +21,7 @@ option(WITH_TCMALLOC "Use tcmalloc as the memory allocator" OFF)
option(WITH_JEMALLOC "Use jemalloc as the memory allocator" OFF)
option(INSTALL_EXPERIMENTAL "Install experimental modules" OK)
option(WITH_ASAN "Enable AddressSanitizer" OFF)
option(WITH_ASAN "Enable ThreadSanitizer" OFF)
option(WITH_TSAN "Enable ThreadSanitizer" OFF)
# Default package name
set(PACKAGE_NAME "maxscale" CACHE STRING "Name of the generated package")