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.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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( setupGravSphere setupGravSphere.cpp )
  14. target_link_libraries( setupGravSphere "lemmacore" "fem4ellipticpde")
  15. add_executable( ResampleWithDataset ResampleWithDataset.cpp )
  16. target_link_libraries( ResampleWithDataset "lemmacore" "fem4ellipticpde")
  17. #add_executable( LinearMag_Sphere LinearMag/Sphere.cpp )
  18. #target_link_libraries( LinearMag_Sphere "lemmacore" "fem4ellipticpde" )
  19. add_subdirectory(LinearMag)
  20. install(DIRECTORY "LinearMag"
  21. DESTINATION "${CMAKE_INSTALL_PREFIX}/share/FEM4EllipticPDE/"
  22. PATTERN "*.cpp" EXCLUDE
  23. PATTERN "CMakeLists.txt" EXCLUDE
  24. )
  25. INSTALL_TARGETS( "/share/FEM4EllipticPDE/"
  26. FEM4EllipticPDE_bhmag merge VTKDC VTKEdgeG VTKEdgeGsphere ResampleWithDataset
  27. )
  28. INSTALL_TARGETS( "/share/FEM4EllipticPDE/grav"
  29. setupGravSphere
  30. )
  31. install( DIRECTORY "borehole"
  32. DESTINATION "${CMAKE_INSTALL_PREFIX}/share/FEM4EllipticPDE/"
  33. PATTERN .svn EXCLUDE
  34. )
  35. install( DIRECTORY "grav"
  36. DESTINATION "${CMAKE_INSTALL_PREFIX}/share/FEM4EllipticPDE/"
  37. PATTERN .svn EXCLUDE
  38. )
  39. install( DIRECTORY "magnet"
  40. DESTINATION "${CMAKE_INSTALL_PREFIX}/share/FEM4EllipticPDE/"
  41. PATTERN .svn EXCLUDE
  42. )
  43. install( DIRECTORY "DC"
  44. DESTINATION "${CMAKE_INSTALL_PREFIX}/share/FEM4EllipticPDE/"
  45. PATTERN .svn EXCLUDE
  46. )