Skip to content

Commit

Permalink
Added missing CMAKE_STATIC_LIBRARY_PREFIX
Browse files Browse the repository at this point in the history
  • Loading branch information
dbs4261 committed Sep 17, 2024
1 parent 5714a05 commit 0f7e43d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 3rdparty/ipp/ipp.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ else()
endif()

foreach(item IN LISTS IPP_LIBRARIES)
list(APPEND IPP_BUILD_BYPRODUCTS <SOURCE_DIR>/${IPP_SUBPATH}lib/${item}${CMAKE_STATIC_LIBRARY_SUFFIX})
list(APPEND IPP_BUILD_BYPRODUCTS <SOURCE_DIR>/${IPP_SUBPATH}lib/${CMAKE_STATIC_LIBRARY_PREFIX}${item}${CMAKE_STATIC_LIBRARY_SUFFIX})
endforeach()

ExternalProject_Add(ext_ipp
Expand Down
2 changes: 1 addition & 1 deletion 3rdparty/vtk/vtk_build.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ set(VTK_LIBRARIES
if(BUILD_VTK_FROM_SOURCE)

foreach(item IN LISTS VTK_LIBRARIES)
list(APPEND VTK_BUILD_BYPRODUCTS <INSTALL_DIR>/${Open3D_INSTALL_LIB_DIR}/${item}${CMAKE_STATIC_LIBRARY_SUFFIX})
list(APPEND VTK_BUILD_BYPRODUCTS <INSTALL_DIR>/${Open3D_INSTALL_LIB_DIR}/${CMAKE_STATIC_LIBRARY_PREFIX}${item}${CMAKE_STATIC_LIBRARY_SUFFIX})
endforeach()

ExternalProject_Add(
Expand Down

0 comments on commit 0f7e43d

Please sign in to comment.