You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
619 B
11 lines
619 B
# Configured file and directory locations.
|
|
SET(CMAKE_INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@")
|
|
SET(VTK_LIB_DIR "@LIBRARY_OUTPUT_PATH@")
|
|
SET(VTK_INSTALL_QT_DIR "@VTK_INSTALL_QT_DIR@")
|
|
SET(VTK_INSTALL_QT_PLUGIN_DIR "@VTK_INSTALL_QT_PLUGIN_DIR@")
|
|
SET(VTK_INSTALL_QT_PLUGIN_FILE "@CMAKE_SHARED_LIBRARY_PREFIX@QVTKWidgetPlugin@CMAKE_SHARED_LIBRARY_SUFFIX@")
|
|
|
|
# Install the file to the specified location.
|
|
MESSAGE(STATUS "Installing ${VTK_INSTALL_QT_PLUGIN_DIR}/${VTK_INSTALL_QT_PLUGIN_FILE}")
|
|
FILE(INSTALL DESTINATION "${VTK_INSTALL_QT_PLUGIN_DIR}" TYPE SHARED_LIBRARY
|
|
FILES "${VTK_LIB_DIR}/${VTK_INSTALL_QT_PLUGIN_FILE}")
|
|
|