Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alex W.
VTK
Commits
fa7569f3
Commit
fa7569f3
authored
5 years ago
by
Julien Schueller
Browse files
Options
Downloads
Patches
Plain Diff
vtk_detect_library_type to disambiguate static and import libs
closes #17607
parent
64c3b8c0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMake/vtkDetectLibraryType.cmake
+10
-0
10 additions, 0 deletions
CMake/vtkDetectLibraryType.cmake
with
10 additions
and
0 deletions
CMake/vtkDetectLibraryType.cmake
+
10
−
0
View file @
fa7569f3
...
...
@@ -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
}
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment