Skip to content

Commit

Permalink
Bash -> python string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanwweber committed Oct 20, 2024
1 parent e7bfa38 commit 24e1227
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions get_hdf5_win.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@
"-DHDF5_ENABLE_SZIP_SUPPORT=ON",
"-DHDF5_ALLOW_EXTERNAL_SUPPORT:STRING=TGZ",
"-DZLIB_PACKAGE_NAME:STRING=zlib",
f"-DZLIB_TGZ_NAME:STRING=zlib-${ZLIB_VERSION}.tar.gz",
f"-DZLIB_TGZ_ORIGPATH:STRING=https://github.com/madler/zlib/releases/download/v${ZLIB_VERSION}",
f"-DZLIB_TGZ_NAME:STRING=zlib-{ZLIB_VERSION}.tar.gz",
f"-DZLIB_TGZ_ORIGPATH:STRING=https://github.com/madler/zlib/releases/download/v{ZLIB_VERSION}",
"-DZLIB_USE_LOCALCONTENT:BOOL=OFF",
"-DLIBAEC_PACKAGE_NAME:STRING=libaec",
f"-DLIBAEC_TGZ_NAME:STRING=libaec-${LIBAEC_VERSION}.tar.gz",
f"-DLIBAEC_TGZ_ORIGPATH:STRING=https://github.com/MathisRosenhauer/libaec/releases/download/v${LIBAEC_VERSION}",
f"-DLIBAEC_TGZ_NAME:STRING=libaec-{LIBAEC_VERSION}.tar.gz",
f"-DLIBAEC_TGZ_ORIGPATH:STRING=https://github.com/MathisRosenhauer/libaec/releases/download/v{LIBAEC_VERSION}",
"-DLIBAEC_USE_LOCALCONTENT:BOOL=OFF",
]
CMAKE_BUILD_CMD = ["cmake", "--build"]
Expand Down

0 comments on commit 24e1227

Please sign in to comment.