File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -68,31 +68,31 @@ endif()
6868
6969option (ASAN OFF "Compile library and executables with LLVM Address Sanitizer" )
7070if (ASAN)
71- if (NOT TARGET ASAN )
71+ if (NOT TARGET asan )
7272 find_package (sanitizer REQUIRED COMPONENTS asan)
7373 endif ()
7474 target_link_libraries (${PROJECT_NAME} _c PUBLIC $<BUILD_INTERFACE:asan>)
7575endif ()
7676
7777option (UBSAN OFF "Compile library and executables with LLVM Undefined Behavior Sanitizer" )
7878if (UBSAN)
79- if (NOT TARGET UBSAN )
79+ if (NOT TARGET ubsan )
8080 find_package (sanitizer REQUIRED COMPONENTS ubsan)
8181 endif ()
8282 target_link_libraries (${PROJECT_NAME} _c PUBLIC $<BUILD_INTERFACE:ubsan>)
8383endif ()
8484
8585option (MSAN OFF "Compile library and executables with LLVM Memory Sanitizer" )
8686if (MSAN)
87- if (NOT TARGET MSAN )
87+ if (NOT TARGET msan )
8888 find_package (sanitizer REQUIRED COMPONENTS msan)
8989 endif ()
9090 target_link_libraries (${PROJECT_NAME} _c PUBLIC $<BUILD_INTERFACE:msan>)
9191endif ()
9292
9393option (TSAN OFF "Compile library and executables with LLVM Thread Sanitizer" )
9494if (TSAN)
95- if (NOT TARGET TSAN )
95+ if (NOT TARGET tsan )
9696 find_package (sanitizer REQUIRED COMPONENTS tsan)
9797 endif ()
9898 target_link_libraries (${PROJECT_NAME} _c PUBLIC $<BUILD_INTERFACE:tsan>)
You can’t perform that action at this time.
0 commit comments