Skip to content

Commit

Permalink
Add python subdirectory to include dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
makaimann committed Feb 16, 2025
1 parent 05ec9b4 commit 4fa6cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/setup.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ if not os.path.isfile(os.path.join('smt_switch', ext_filename)):
"libraries": ["smt-switch"] + [f"smt-switch-{solver}" for solver in solver_libs.keys()],
"library_dirs": [PROJECT_BINARY_DIR, f"{PROJECT_BINARY_DIR}/python"] + [f"{PROJECT_BINARY_DIR}/{solver}" for solver in solver_libs],
"runtime_library_dirs": [PROJECT_BINARY_DIR, f"{PROJECT_BINARY_DIR}/python"] + [f"{PROJECT_BINARY_DIR}/{solver}" for solver in solver_libs],
"include_dirs": [f"{PROJECT_SOURCE_DIR}/include", PROJECT_BINARY_DIR] + [f"{PROJECT_SOURCE_DIR}/{solver}/include" for solver in solver_libs],
"include_dirs": [f"{PROJECT_SOURCE_DIR}/include", PROJECT_BINARY_DIR, f"{PROJECT_BINARY_DIR}/python"] + [f"{PROJECT_SOURCE_DIR}/{solver}/include" for solver in solver_libs],
"language": "c++",
"extra_compile_args": ["-std=c++17"]
}
Expand Down

0 comments on commit 4fa6cef

Please sign in to comment.