Skip to content

Commit

Permalink
Add missing comma in CMake arguments for Python bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
fbriol committed Nov 22, 2024
1 parent 252b6cf commit ed3d78f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def cmake_arguments(self, cfg: str, extdir: str) -> list[str]:
'-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=' + extdir,
'-DPython3_EXECUTABLE=' + sys.executable,
'-DFES_BUILD_PYTHON_BINDINGS=ON',
*self.set_cmake_user_options()
*self.set_cmake_user_options(),
]
return cmake_args

Expand Down

0 comments on commit ed3d78f

Please sign in to comment.