Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Main Repositories
otb
Commits
239e3c73
Commit
239e3c73
authored
Jul 01, 2016
by
Rashad Kanavath
Browse files
PKG: msvc lib files .dll.a -> .lib
parent
c929a958
Changes
1
Hide whitespace changes
Inline
Side-by-side
SuperBuild/Packaging/PackageHelper.cmake
View file @
239e3c73
...
...
@@ -198,8 +198,12 @@ function(func_install_xdk_files)
set
(
QT_REQ_DIRS
)
if
(
WIN32
)
#only affects windows due to regex on dll
file
(
GLOB LIB_FILES
"
${
DEPENDENCIES_INSTALL_DIR
}
/lib/*dll.*"
)
install
(
FILES
${
LIB_FILES
}
DESTINATION
${
PKG_STAGE_DIR
}
/lib
)
if
(
MSVC
)
file
(
GLOB LIB_FILES
"
${
DEPENDENCIES_INSTALL_DIR
}
/lib/*.lib"
)
else
()
file
(
GLOB LIB_FILES
"
${
DEPENDENCIES_INSTALL_DIR
}
/lib/*dll.*"
)
endif
()
install
(
FILES
${
LIB_FILES
}
DESTINATION
${
PKG_STAGE_DIR
}
/lib
)
file
(
GLOB ITK_EXTRA_DLL_FILES_1
"
${
DEPENDENCIES_INSTALL_DIR
}
/bin/libITK*.dll"
)
install
(
FILES
${
ITK_EXTRA_DLL_FILES_1
}
DESTINATION
${
PKG_STAGE_DIR
}
/bin
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment