Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Christian Butz
VTK
Commits
47f5967b
Commit
47f5967b
authored
Apr 19, 2011
by
David Partyka
Browse files
Add proper install rules when vtk.exe is built with forwarding.
parent
63157d1b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Wrapping/Tcl/CMakeLists.txt
View file @
47f5967b
...
...
@@ -109,12 +109,27 @@ SET(VTK_TCL_INSTALL_DIR ${VTK_INSTALL_TCL_DIR}/tcl)
SET
(
VTK_TCL_INSTALL_DIR_CM24
${
VTK_INSTALL_TCL_DIR_CM24
}
/tcl
)
IF
(
NOT VTK_INSTALL_NO_RUNTIME
)
INSTALL
(
TARGETS vtk
EXPORT
${
VTK_INSTALL_EXPORT_NAME
}
RUNTIME DESTINATION
${
VTK_INSTALL_BIN_DIR_CM24
}
COMPONENT RuntimeExecutables
# .exe, .dll
LIBRARY DESTINATION
${
VTK_INSTALL_LIB_DIR_CM24
}
COMPONENT RuntimeLibraries
# .so, mod.dll
ARCHIVE DESTINATION
${
VTK_INSTALL_LIB_DIR_CM24
}
COMPONENT Development
# .a, .lib
)
IF
(
VTK_BUILD_FORWARDING_EXECUTABLES
)
INSTALL
(
TARGETS vtk
EXPORT
${
VTK_INSTALL_EXPORT_NAME
}
RUNTIME DESTINATION
${
VTK_INSTALL_LIB_DIR_CM24
}
COMPONENT RuntimeExecutables
# .exe, .dll
LIBRARY DESTINATION
${
VTK_INSTALL_LIB_DIR_CM24
}
COMPONENT RuntimeLibraries
# .so, mod.dll
ARCHIVE DESTINATION
${
VTK_INSTALL_LIB_DIR_CM24
}
COMPONENT Development
# .a, .lib
)
INSTALL
(
TARGETS vtk
${
VTK_EXE_SUFFIX
}
EXPORT
${
VTK_INSTALL_EXPORT_NAME
}
RUNTIME DESTINATION
${
VTK_INSTALL_BIN_DIR_CM24
}
COMPONENT RuntimeExecutables
# .exe, .dll
LIBRARY DESTINATION
${
VTK_INSTALL_LIB_DIR_CM24
}
COMPONENT RuntimeLibraries
# .so, mod.dll
ARCHIVE DESTINATION
${
VTK_INSTALL_LIB_DIR_CM24
}
COMPONENT Development
# .a, .lib
)
ELSE
(
VTK_BUILD_FORWARDING_EXECUTABLES
)
INSTALL
(
TARGETS vtk
EXPORT
${
VTK_INSTALL_EXPORT_NAME
}
RUNTIME DESTINATION
${
VTK_INSTALL_BIN_DIR_CM24
}
COMPONENT RuntimeExecutables
# .exe, .dll
LIBRARY DESTINATION
${
VTK_INSTALL_LIB_DIR_CM24
}
COMPONENT RuntimeLibraries
# .so, mod.dll
ARCHIVE DESTINATION
${
VTK_INSTALL_LIB_DIR_CM24
}
COMPONENT Development
# .a, .lib
)
ENDIF
(
VTK_BUILD_FORWARDING_EXECUTABLES
)
ENDIF
(
NOT VTK_INSTALL_NO_RUNTIME
)
# Create the pvtk Tcl wrapper executable with MPI support.
...
...
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