/usr/lib/cmake/paraview/ParaViewCPackOptions.cmake.in is in paraview-dev 4.0.1-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # 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()
|