cmake_minimum_required(VERSION 3.14) project(flashprog) find_package(Midas REQUIRED PATHS $ENV{MIDASSYS}) add_executable(flashprog flashprog.cpp) target_link_libraries(flashprog PUBLIC midas::mscb)