Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix legacy *.lib files not obeying CMAKE_INSTALL_LIBDIR variable. #1613

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/tbb/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -163,15 +163,15 @@ if (TBB_INSTALL)
# to support previous user experience for linkage.
install(FILES
$<TARGET_LINKER_FILE:tbb>
DESTINATION lib
DESTINATION ${CMAKE_INSTALL_LIBDIR}
CONFIGURATIONS RelWithDebInfo Release MinSizeRel
RENAME tbb.lib
COMPONENT devel
)

install(FILES
$<TARGET_LINKER_FILE:tbb>
DESTINATION lib
DESTINATION ${CMAKE_INSTALL_LIBDIR}
CONFIGURATIONS Debug
RENAME tbb_debug.lib
COMPONENT devel
Expand All @@ -180,7 +180,7 @@ if (TBB_INSTALL)
if(TBB_LINUX_SEPARATE_DBG)
install(FILES
$<TARGET_FILE:tbb>.dbg
DESTINATION lib
DESTINATION ${CMAKE_INSTALL_LIBDIR}
COMPONENT devel
)
endif()
Expand Down
Loading