Fix the enabling of default extension handling (#2938)

This commit is contained in:
Weiming Zhao 2021-04-05 20:50:50 -07:00 committed by GitHub
parent 16c23fef31
commit 4f0727f280
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -230,7 +230,7 @@ function(pybind11_add_module target_name)
endif() endif()
# If we don't pass a WITH_SOABI or WITHOUT_SOABI, use our own default handling of extensions # If we don't pass a WITH_SOABI or WITHOUT_SOABI, use our own default handling of extensions
if(NOT ARG_WITHOUT_SOABI OR NOT "WITH_SOABI" IN_LIST ARG_UNPARSED_ARGUMENTS) if(NOT ARG_WITHOUT_SOABI AND NOT "WITH_SOABI" IN_LIST ARG_UNPARSED_ARGUMENTS)
pybind11_extension(${target_name}) pybind11_extension(${target_name})
endif() endif()