File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ jobs:
152152
153153 - uses : actions/upload-artifact@v4
154154 with :
155- name : pyvcell-fv-${{ matrix.os }}-${{ matrix.python_version }}-cibw-wheels
155+ name : pyvcell-fv-${{ matrix.os }}-${{ matrix.python_version:0:-2 }}-cibw-wheels
156156 path : ./wheelhouse/*.whl
157157
158158 - name : Setup tmate session on failure
Original file line number Diff line number Diff line change @@ -140,6 +140,11 @@ if (APPLE)
140140 execute_process (COMMAND brew --prefix libzip OUTPUT_VARIABLE LIBZIP_PREFIX OUTPUT_STRIP_TRAILING_WHITESPACE)
141141 set (CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} ${LIBZIP_PREFIX} )
142142endif ()
143+ if (LINUX)
144+ include_directories (/usr/local/include )
145+ link_directories (/usr/local/lib)
146+ target_link_libraries (your_target_name zip)
147+ endif ()
143148find_package (LIBZIP 1.10 REQUIRED)
144149
145150
You can’t perform that action at this time.
0 commit comments