Skip to content
Snippets Groups Projects
Commit fa7569f3 authored by Julien Schueller's avatar Julien Schueller
Browse files

vtk_detect_library_type to disambiguate static and import libs

closes #17607
parent 64c3b8c0
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,16 @@ function (vtk_detect_library_type output)
elseif (vdlt_static_check STREQUAL CMAKE_STATIC_LIBRARY_SUFFIX)
set(vdlt_type STATIC)
endif ()
# when import suffix != static suffix, we can disambiguate static and import
if (WIN32 AND NOT CMAKE_IMPORT_LIBRARY_SUFFIX STREQUAL CMAKE_STATIC_LIBRARY_SUFFIX)
string(LENGTH "${CMAKE_IMPORT_LIBRARY_SUFFIX}" vdlt_import_suffix_len)
math(EXPR vdlt_import_idx "${vdlt_path_len} - ${vdlt_import_suffix_len}")
string(SUBSTRING "${vdlt_PATH}" "${vdlt_import_idx}" -1 vdlt_import_check)
if (vdlt_import_check STREQUAL CMAKE_IMPORT_LIBRARY_SUFFIX)
set(vdlt_type SHARED)
endif ()
endif ()
endif ()
set("${output}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment