Skip to content
Snippets Groups Projects
Commit 8e8c455e authored by Markus Blatt's avatar Markus Blatt
Browse files

[Merge][CMake] Merged revisions : 1708

Revision  r1708
.----------------------
Use GNUInstallDir to specify installation directory.

.----------------------


[[Imported from SVN: r1845]]
parents 4f5ae9fe d894a599
No related branches found
No related tags found
No related merge requests found
file(GLOB modules *.cmake)
install(FILES ${modules} DESTINATION
${CMAKE_INSTALL_PREFIX}/share/cmake/modules)
${CMAKE_INSTALL_DATAROOTDIR}/cmake/modules)
......@@ -4,5 +4,5 @@ if(LATEX_USABLE)
ADD_LATEX_DOCUMENT(istl.tex FATHER_TARGET doc
BIB_FILES istl.bib DEFAULT_SAFEPDF IMAGES blockstructure.eps)
create_doc_install(istl.pdf
share/doc/dune-istl/ istl_safepdf)
${CMAKE_INSTALL_DOCDIR} istl_safepdf)
endif(LATEX_USABLE)
......@@ -9,5 +9,5 @@ if(LATEX_USABLE)
ADD_LATEX_DOCUMENT(communication.tex FATHER_TARGET doc
BIBFILES communication.bib DEFAULT_SAFEPDF INPUTS poosc08_test.cc
IMAGE_DIRS figures)
create_doc_install(${CMAKE_CURRENT_BINARY_DIR}/communication.pdf share/doc/dune-istl/comm communication_safepdf)
create_doc_install(${CMAKE_CURRENT_BINARY_DIR}/communication.pdf ${CMAKE_INSTALL_DOCDIR}/comm communication_safepdf)
endif(LATEX_USABLE)
......@@ -48,4 +48,4 @@ install(FILES
superlu.hh
supermatrix.hh
vbvector.hh
DESTINATION include/dune/istl)
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dune/istl)
......@@ -6,4 +6,4 @@ install(FILES aggregates.hh dependency.hh galerkin.hh graph.hh
hierarchy.hh construction.hh
transfer.hh smoother.hh amg.hh kamg.hh combinedfunctor.hh
graphcreator.hh parameters.hh renumberer.hh pinfo.hh
DESTINATION include/dune/istl/paamg)
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dune/istl/paamg)
install(PROGRAMS
dune_istl.m4 pardiso.m4 superlu-dist.m4 superlu.m4
DESTINATION share/aclocal)
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/aclocal)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment