Commits


Scott McKay authored and GitHub committed 7f374f40125
Fix build error on Windows if Python debug libraries are installed (#14308) ### Description <!-- Describe your changes. --> If a user installs the debug libraries from Python on Windows the ORT python project file attempts to use the debug python lib, which conflicts with a pragma in pyconfig.h that wants the release lib (due to pybind11 undefining _DEBUG). Explicitly use the release lib instead of Python::Module so the build doesn't break. ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> Fix obtuse build break.