Iterate Matlab versions with CMake
These techniques work with any versioned program or library. Here we use Matlab as an example. CMake find_package with a version range would be used to simply select from a known-working version range.
Many Matlab codes require a modern version of Matlab. It’s possible to select from an arbitrary min…max range of Matlab versions with CMake FindMatlab as follows. This technique works with other versioned programs and libraries as well.
foreach(v IN ITEMS 23.2 24.1 24.2)
find_package(Matlab ${v} EXACT COMPONENTS MAIN_PROGRAM)
if(Matlab_FOUND)
add_test(NAME matlab-${v}
COMMAND ${Matlab_MAIN_PROGRAM} -batch "buildtool"
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
endif()
endforeach()