Skip to content

Commit

Permalink
Merge pull request #95 from cute/master
Browse files Browse the repository at this point in the history
Add framework search path on Mac
  • Loading branch information
ahankinson committed Dec 30, 2015
2 parents 334212a + d86b904 commit aa4cf35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
longdesc = """ Python Bindings for LibMEI. """

if sys.platform == "darwin":
link_args = ["-framework", "mei"]
link_args = ["-F", "/Library/Frameworks","-framework", "mei"]
libraries = ["boost_python-mt"]
library_dirs = []
runtime_library_dirs = []
Expand Down Expand Up @@ -61,4 +61,4 @@
),
],
test_suite="pymei_testsuite"
)
)

0 comments on commit aa4cf35

Please sign in to comment.