mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
20 lines
710 B
CMake
20 lines
710 B
CMake
|
|
# This file is only included when building packagers via CPack.
|
|
#
|
|
# It is *not* included during a "make install" but it is included by cpack during
|
|
# "make package"...
|
|
#
|
|
# Set an environment variable so that the bundle create scripts know the installation
|
|
# is being driven by CPack. To avoid using $DESTDIR/Applications as a prefix...
|
|
#
|
|
set(ENV{ParaView_CPACK_GENERATOR} "${CPACK_GENERATOR}")
|
|
|
|
if(CPACK_GENERATOR STREQUAL "DragNDrop")
|
|
# When using CPack with the DragNDrop generator, only the ParaView "Bundle" component
|
|
# is installed.
|
|
#
|
|
set(CPACK_INSTALL_CMAKE_PROJECTS "@CPACK_INSTALL_CMAKE_PROJECTS_DRAGNDROP@")
|
|
else()
|
|
set(CPACK_INSTALL_CMAKE_PROJECTS "@CPACK_INSTALL_CMAKE_PROJECTS@")
|
|
endif()
|