Surface NMR forward modelling
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

CMakeLists.txt 440B

12345678910111213141516
  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. # Linking
  6. if ( LEMMA_VTK6_SUPPORT OR LEMMA_VTK7_SUPPORT )
  7. target_link_libraries( KernelV0 ${VTK_LIBRARIES})
  8. target_link_libraries( Coupling ${VTK_LIBRARIES})
  9. endif()
  10. INSTALL_TARGETS( "/share/Merlin/"
  11. KernelV0
  12. Coupling
  13. )