Skip to content

Commit d6d1af2

Browse files
committed
Specify the source directory explicitly
1 parent 75676eb commit d6d1af2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bindings/python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def build_libraries():
136136
os.mkdir(BUILD_DIR)
137137
conf = 'Debug' if os.getenv('DEBUG', '') else 'Release'
138138

139-
cmake_args = ["cmake", '-B', BUILD_DIR, "-DCMAKE_BUILD_TYPE=" + conf]
139+
cmake_args = ["cmake", '-B', BUILD_DIR, '-S', UC_DIR, "-DCMAKE_BUILD_TYPE=" + conf]
140140
if os.getenv("TRACE", ""):
141141
cmake_args += ["-DUNICORN_TRACER=on"]
142142
subprocess.check_call(cmake_args)

0 commit comments

Comments
 (0)