Galerkin FEM for elliptic PDEs
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. #INSTALL_TARGETS( "${CMAKE_INSTALL_PREFIX}/share/FEM4EllipticPDE/"
  18. INSTALL_TARGETS( "/share/FEM4EllipticPDE/"
  19. FEM4EllipticPDE_bhmag FEM4EllipticPDE merge VTKDC VTKEdgeG VTKEdgeGsphere ResampleWithDataset
  20. )
  21. INSTALL_TARGETS( "/share/FEM4EllipticPDE/grav"
  22. setupGravSphere
  23. )
  24. install( DIRECTORY "borehole"
  25. DESTINATION "${CMAKE_INSTALL_PREFIX}/share/FEM4EllipticPDE/"
  26. PATTERN .svn EXCLUDE
  27. )
  28. install( DIRECTORY "grav"
  29. DESTINATION "${CMAKE_INSTALL_PREFIX}/share/FEM4EllipticPDE/"
  30. PATTERN .svn EXCLUDE
  31. )
  32. install( DIRECTORY "magnet"
  33. DESTINATION "${CMAKE_INSTALL_PREFIX}/share/FEM4EllipticPDE/"
  34. PATTERN .svn EXCLUDE
  35. )
  36. install( DIRECTORY "DC"
  37. DESTINATION "${CMAKE_INSTALL_PREFIX}/share/FEM4EllipticPDE/"
  38. PATTERN .svn EXCLUDE
  39. )