cmake_minimum_required(VERSION 3.14) project(mtfe) if(NOT TARGET midas::midas) find_package(Midas REQUIRED PATHS $ENV{MIDASSYS}) endif() add_executable(mtfe mtfe.cxx) target_link_libraries(mtfe midas::mfed)