We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2485b51 commit 7e5a49eCopy full SHA for 7e5a49e
1 file changed
src/omnipkg/dispatcher.py
@@ -472,9 +472,9 @@ def _maybe_install_c_dispatcher():
472
msvc_include = str(msvc_root / "include")
473
msvc_lib = str(msvc_root / "lib" / "x64")
474
sdk_includes, sdk_libs = [], []
475
- sdk_base = Path(r"C:\Program Files (x86)\Windows Kits")
+ sdk_base = Path("C:/Program Files (x86)/Windows Kits/10")
476
if not sdk_base.exists():
477
- sdk_base = Path(r"C:\Program Files\Windows Kits")
+ sdk_base = Path("C:/Program Files/Windows Kits/10")
478
if sdk_base.exists():
479
inc_base = sdk_base / "include"
480
lib_base = sdk_base / "lib"
0 commit comments