Galerkin FEM for elliptic PDEs
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CMakeLists.txt 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. add_executable( FEM4EllipticPDE_bhmag FEM4EllipticPDE_bhmag.cpp )
  2. target_link_libraries( FEM4EllipticPDE_bhmag "lemmacore" "fem4ellipticpde")
  3. add_executable( FEM4EllipticPDE FEM4EllipticPDE.cpp )
  4. target_link_libraries( FEM4EllipticPDE "lemmacore" "fem4ellipticpde")
  5. add_executable( merge merge.cpp )
  6. target_link_libraries( merge "lemmacore" "fem4ellipticpde")
  7. add_executable( VTKDC VTKDC.cpp )
  8. target_link_libraries( VTKDC "lemmacore" "fem4ellipticpde")
  9. add_executable( VTKEdgeG VTKEdgeG.cpp )
  10. target_link_libraries( VTKEdgeG "lemmacore" "fem4ellipticpde")
  11. add_executable( VTKEdgeGsphere VTKEdgeGsphere.cpp )
  12. target_link_libraries( VTKEdgeGsphere "lemmacore" "fem4ellipticpde")
  13. add_executable( VTKGsphere VTKGsphere.cpp )
  14. target_link_libraries( VTKGsphere "lemmacore" "fem4ellipticpde")
  15. add_executable( ResampleWithDataset ResampleWithDataset.cpp )
  16. target_link_libraries( ResampleWithDataset "lemmacore" "fem4ellipticpde")
  17. #INSTALL_TARGETS( "${CMAKE_INSTALL_PREFIX}/share/FEM4EllipticPDE/"
  18. INSTALL_TARGETS( "/share/FEM4EllipticPDE/"
  19. FEM4EllipticPDE_bhmag FEM4EllipticPDE merge VTKDC VTKEdgeG VTKGsphere VTKEdgeGsphere ResampleWithDataset
  20. )
  21. install( DIRECTORY "borehole"
  22. DESTINATION "${CMAKE_INSTALL_PREFIX}/share/FEM4EllipticPDE/"
  23. PATTERN .svn EXCLUDE
  24. )
  25. install( DIRECTORY "DC"
  26. DESTINATION "${CMAKE_INSTALL_PREFIX}/share/FEM4EllipticPDE/"
  27. PATTERN .svn EXCLUDE
  28. )