diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index f607202..9da8f90 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -40,7 +40,7 @@ jobs: if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} - name: Compile and Build wheels - uses: pypa/cibuildwheel@v2.20.0 + uses: pypa/cibuildwheel@v2.23.3 env: CIBW_ARCHS_LINUX: x86_64 CIBW_ARCHS_WINDOWS: AMD64 diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b92feb..bdf1ff7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -474,5 +474,5 @@ IF(GREEDY_BUILD_WRAPPING) pybind11_add_module(picsl_greedy src/wrapping/GreedyPythonBindings.cxx) TARGET_INCLUDE_DIRECTORIES(picsl_greedy PRIVATE ${Greedy_INCLUDE_DIRS} src/multichunk src/lmshoot/) TARGET_LINK_LIBRARIES(picsl_greedy PUBLIC ${ITK_LIBRARIES} ${VTK_LIBRARIES} greedyapi lmshootapi multichunkgreedyapi) - install(TARGETS picsl_greedy DESTINATION .) + install(TARGETS picsl_greedy DESTINATION lib) ENDIF()