From e689a35ee5acea1493445442f8edf89a520d01ab Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Thu, 26 Jan 2023 00:22:04 +0100 Subject: [PATCH] setup the include directory for MSVC --- src/runtime/python/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runtime/python/setup.py b/src/runtime/python/setup.py index 31f5cd86c..1c3069bd8 100644 --- a/src/runtime/python/setup.py +++ b/src/runtime/python/setup.py @@ -14,6 +14,7 @@ if libraries==['']: if on_windows: cpath = '../c/pgf/' extra_sources = [cpath+f for f in os.listdir(cpath) if f.endswith('.cxx')] + includes+=["../c"] else: extra_sources = []