Lemma is an Electromagnetics API
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CMakeLists.txt 695B

12345678910111213141516171819202122
  1. add_executable( LayeredEarthEM LayeredEarthEM.cpp )
  2. target_link_libraries( LayeredEarthEM "lemmacore" "fdem1d")
  3. add_executable( FieldPoints FieldPoints.cpp )
  4. target_link_libraries( FieldPoints "lemmacore" "fdem1d")
  5. add_executable( PolygonalWireAntenna PolygonalWireAntenna.cpp )
  6. target_link_libraries( PolygonalWireAntenna "lemmacore" "fdem1d")
  7. add_executable( CircularLoop CircularLoop.cpp )
  8. target_link_libraries( CircularLoop "lemmacore" "fdem1d")
  9. add_executable( EMDipEarth1D EMDipEarth1D.cpp )
  10. target_link_libraries( EMDipEarth1D "lemmacore" "fdem1d")
  11. INSTALL_TARGETS( "/share/FEM1D/"
  12. LayeredEarthEM
  13. FieldPoints
  14. PolygonalWireAntenna
  15. EMDipEarth1D
  16. CircularLoop
  17. )