cmake_minimum_required(VERSION 3.27)
project(test)
find_package(MFEM)
add_executable(ex0 ex0.cpp)
target_link_libraries(ex0 mfem)
