Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
CMakeLists.txt 595 B
add_subdirectory(test)
add_subdirectory(traits)
add_subdirectory(types)

#install headers
install(FILES
  addtodiagonal.hh
  algorithm.hh
  asfieldmatrix.hh
  axpy.hh
  axy.hh
  blockmatrixview.hh
  componentwisematrixmap.hh
  concepts.hh
  crossproduct.hh
  genericvectortools.hh
  getscalar.hh
  ldlt.hh
  promote.hh
  resize.hh
  singlenonzerocolumnmatrix.hh
  singlenonzerorowmatrix.hh
  transpose.hh
  transformmatrix.hh
  triangularsolve.hh
  DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dune/matrix-vector)

FILE(GLOB_RECURSE headers "./*.hh")
add_custom_target(headers SOURCES ${headers})