Skip to content

Commit

Permalink
[DOR-670] Skip checks for sanitizer builds
Browse files Browse the repository at this point in the history
  • Loading branch information
blawrence-ont committed Apr 22, 2024
1 parent f1701fd commit ad75e88
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cmake/Warnings.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ function(disable_warnings TARGET_NAME)
endfunction()

function(check_linked_libs TARGET_NAME)
if (ECM_ENABLE_SANITIZERS)
# We don't ship these, so no need to check them.
return()
endif()

if (APPLE)
add_custom_command(
TARGET ${TARGET_NAME}
Expand Down

0 comments on commit ad75e88

Please sign in to comment.