Surface NMR forward modelling
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 628B

123456789101112131415161718192021
  1. add_executable( KernelV0 KernelV0.cpp )
  2. target_link_libraries( KernelV0 "lemmacore" "fdem1d" "merlin")
  3. add_executable( Coupling Coupling.cpp )
  4. target_link_libraries( Coupling "lemmacore" "fdem1d" "merlin")
  5. add_executable( Interference Interference.cpp )
  6. target_link_libraries( Interference "lemmacore" "fdem1d" "merlin")
  7. # Linking
  8. if ( LEMMA_VTK6_SUPPORT OR LEMMA_VTK7_SUPPORT )
  9. target_link_libraries( KernelV0 ${VTK_LIBRARIES})
  10. target_link_libraries( Coupling ${VTK_LIBRARIES})
  11. target_link_libraries( Interference ${VTK_LIBRARIES})
  12. endif()
  13. INSTALL_TARGETS( "/share/Merlin/"
  14. KernelV0
  15. Coupling
  16. Interference
  17. )