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.

12345678910111213
  1. include_directories(${CMAKE_INSTALL_PREFIX}/include)
  2. include_directories( "${CMAKE_CURRENT_SOURCE_DIR}/include" )
  3. add_subdirectory("src")
  4. add_library( fem4ellipticpde ${FEMSOURCE} )
  5. target_link_libraries(fem4ellipticpde "lemmacore")
  6. install ( TARGETS fem4ellipticpde DESTINATION ${CMAKE_INSTALL_PREFIX}/lib )
  7. if (LEMMABUILDEXAMPLES)
  8. add_subdirectory(examples)
  9. endif()