Skip to content

Commit

Permalink
Convert Paths to str
Browse files Browse the repository at this point in the history
  • Loading branch information
t-sommer committed Jul 26, 2024
1 parent 79184ee commit 29a1813
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions fmusim-gui/build/build_cvode.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
'-D', f'BUILD_TESTING=OFF',
'-D', f'EXAMPLES_INSTALL=OFF',
'-D', f'CMAKE_INSTALL_PREFIX={ install_prefix }',
root / 'cvode-6.4.1']
str(root / 'cvode-6.4.1')]
)

check_call([
'cmake',
'--build', build_dir,
'--build', str(build_dir),
'--config', 'Release',
'--target', 'install'
])
4 changes: 2 additions & 2 deletions fmusim-gui/build/build_libxml2.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
'-D', 'LIBXML2_WITH_PYTHON=OFF',
'-D', 'LIBXML2_WITH_ZLIB=OFF',
'-D', 'LIBXML2_WITH_TESTS=OFF',
root / 'libxml2-2.11.5']
str(root / 'libxml2-2.11.5')]
)

check_call([
'cmake',
'--build', build_dir,
'--build', str(build_dir),
'--config', 'Release',
'--target', 'install'
])
4 changes: 2 additions & 2 deletions fmusim-gui/build/build_zlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
cmake_args +
['-B', build_dir,
'-D', f'CMAKE_INSTALL_PREFIX={ install_prefix }',
root / 'zlib-1.3']
str(root / 'zlib-1.3')]
)

check_call([
'cmake',
'--build', build_dir,
'--build', str(build_dir),
'--config', 'Release',
'--target', 'install'
])

0 comments on commit 29a1813

Please sign in to comment.