Skip to content

Commit

Permalink
Merge pull request #26 from evanheller/master
Browse files Browse the repository at this point in the history
Modifications to MANIFEST, SConstruct for easier macOS compilation
  • Loading branch information
HazenBabcock authored Aug 15, 2017
2 parents 1c2341f + f562099 commit e4d66fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ recursive-include storm_analysis *.mat
recursive-include storm_analysis *.md
recursive-include storm_analysis *.py
recursive-include storm_analysis *.so
recursive-include storm_analysis *.dylib
recursive-include storm_analysis *.txt
recursive-include storm_analysis *.ui

Expand Down
4 changes: 4 additions & 0 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ fftw_lib_path = None

# OS-X apparently does not have and doesn't need the rt library.
if (platform.system() == "Darwin"):
fftw_lib='libfftw3'
fftw_lib_path = '/usr/local/lib'
l1h_libs = ['lapack']
env.Append(CCFLAGS='-I/usr/local/include')
env.Append(LDFLAGS='-L/usr/local/include')
else:
l1h_libs = ['lapack', 'rt']

Expand Down

0 comments on commit e4d66fd

Please sign in to comment.