Skip to content

Commit

Permalink
Merge pull request WISDEM#38 from nikhar-abbas/develop
Browse files Browse the repository at this point in the history
ROSCO install path bug fix
  • Loading branch information
nikhar-abbas authored Mar 5, 2021
2 parents b3ab9c6 + bb5a8e2 commit d0d4165
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 @@ -96,9 +96,9 @@ def build_extension(self, ext):

cmake_args = ['-DBUILD_SHARED_LIBS=OFF']
cmake_args += ['-DCMAKE_Fortran_FLAGS=-ffree-line-length-0']
cmake_args += ['-DCMAKE_INSTALL_PREFIX={}'.format(localdir)]

if platform.system() == 'Windows':
cmake_args += ['-DCMAKE_INSTALL_PREFIX={}'.format(localdir)]
if self.compiler.compiler_type == 'msvc':
cmake_args += ['-DCMAKE_GENERATOR_PLATFORM=x64']
else:
Expand Down

0 comments on commit d0d4165

Please sign in to comment.