Skip to content

Commit

Permalink
Try to add more library paths to make it work
Browse files Browse the repository at this point in the history
  • Loading branch information
SimeonStoykovQC committed Oct 13, 2023
1 parent aaf4499 commit 172256a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,12 @@ def __str__(self):
extra_compile_args.append("/std:c++17")
boost_root = os.getenv("BOOST_ROOT")
if boost_root:
# raise Exception("Hey")
library_dirs.append(boost_root)
library_dirs.append(os.path.join(boost_root, "lib"))

include_dirs.append(boost_root)
library_dirs.append(boost_root)
library_dirs.append(os.path.join(boost_root, "stage", "lib"))
library_dirs.append(os.path.join(boost_root, "lib64-msvc-14.0"))
else:
Expand Down

0 comments on commit 172256a

Please sign in to comment.