FindMatlab.cmake 46 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466
  1. #.rst:
  2. # FindMatlab
  3. # ----------
  4. #
  5. # Finds Matlab installations and provides Matlab tools and libraries to cmake.
  6. #
  7. # This package first intention is to find the libraries associated with Matlab
  8. # in order to be able to build Matlab extensions (mex files). It can also be
  9. # used:
  10. #
  11. # * run specific commands in Matlab
  12. # * declare Matlab unit test
  13. # * retrieve various information from Matlab (mex extensions, versions and
  14. # release queries, ...)
  15. #
  16. # The module supports the following components:
  17. #
  18. # * ``MX_LIBRARY`` and ``ENG_LIBRARY`` respectively the MX and ENG libraries of
  19. # Matlab
  20. # * ``MAIN_PROGRAM`` the Matlab binary program.
  21. #
  22. # .. note::
  23. #
  24. # The version given to the :command:`find_package` directive is the Matlab
  25. # **version**, which should not be confused with the Matlab *release* name
  26. # (eg. `R2014`).
  27. # The :command:`matlab_get_version_from_release_name` and
  28. # :command:`matlab_get_release_name_from_version` allow a mapping
  29. # from the release name to the version.
  30. #
  31. # The variable :variable:`Matlab_ROOT_DIR` may be specified in order to give
  32. # the path of the desired Matlab version. Otherwise, the behaviour is platform
  33. # specific:
  34. #
  35. # * Windows: The installed versions of Matlab are retrieved from the
  36. # Windows registry
  37. # * OS X: The installed versions of Matlab are given by the MATLAB
  38. # paths in ``/Application``. If no such application is found, it falls back
  39. # to the one that might be accessible from the PATH.
  40. # * Unix: The desired Matlab should be accessible from the PATH.
  41. #
  42. # Additional information is provided when :variable:`MATLAB_FIND_DEBUG` is set.
  43. # When a Matlab binary is found automatically and the ``MATLAB_VERSION``
  44. # is not given, the version is queried from Matlab directly.
  45. # On Windows, it can make a window running Matlab appear.
  46. #
  47. # The mapping of the release names and the version of Matlab is performed by
  48. # defining pairs (name, version). The variable
  49. # :variable:`MATLAB_ADDITIONAL_VERSIONS` may be provided before the call to
  50. # the :command:`find_package` in order to handle additional versions.
  51. #
  52. # A Matlab scripts can be added to the set of tests using the
  53. # :command:`matlab_add_unit_test`. By default, the Matlab unit test framework
  54. # will be used (>= 2013a) to run this script, but regular ``.m`` files
  55. # returning an exit code can be used as well (0 indicating a success).
  56. #
  57. # Module Input Variables
  58. # ^^^^^^^^^^^^^^^^^^^^^^
  59. #
  60. # Users or projects may set the following variables to configure the module
  61. # behaviour:
  62. #
  63. # :variable:`Matlab_ROOT_DIR`
  64. # the root of the Matlab installation.
  65. # :variable:`MATLAB_FIND_DEBUG`
  66. # outputs debug information
  67. # :variable:`MATLAB_ADDITIONAL_VERSIONS`
  68. # additional versions of Matlab for the automatic retrieval of the installed
  69. # versions.
  70. #
  71. # Variables defined by the module
  72. # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  73. #
  74. # Result variables
  75. # """"""""""""""""
  76. #
  77. # ``Matlab_FOUND``
  78. # ``TRUE`` if the Matlab installation is found, ``FALSE``
  79. # otherwise. All variable below are defined if Matlab is found.
  80. # ``Matlab_ROOT_DIR``
  81. # the final root of the Matlab installation determined by the FindMatlab
  82. # module.
  83. # ``Matlab_MAIN_PROGRAM``
  84. # the Matlab binary program. Available only if the component ``MAIN_PROGRAM``
  85. # is given in the :command:`find_package` directive.
  86. # ``Matlab_INCLUDE_DIRS``
  87. # the path of the Matlab libraries headers
  88. # ``Matlab_MEX_LIBRARY``
  89. # library for mex, always available.
  90. # ``Matlab_MX_LIBRARY``
  91. # mx library of Matlab (arrays). Available only if the component
  92. # ``MX_LIBRARY`` has been requested.
  93. # ``Matlab_ENG_LIBRARY``
  94. # Matlab engine library. Available only if the component ``ENG_LIBRARY``
  95. # is requested.
  96. # ``Matlab_LIBRARIES``
  97. # the whole set of libraries of Matlab
  98. # ``Matlab_MEX_COMPILER``
  99. # the mex compiler of Matlab. Currently not used.
  100. # Available only if the component ``MEX_COMPILER`` is asked
  101. #
  102. # Cached variables
  103. # """"""""""""""""
  104. #
  105. # ``Matlab_MEX_EXTENSION``
  106. # the extension of the mex files for the current platform (given by Matlab).
  107. # ``Matlab_ROOT_DIR``
  108. # the location of the root of the Matlab installation found. If this value
  109. # is changed by the user, the result variables are recomputed.
  110. #
  111. # Provided macros
  112. # ^^^^^^^^^^^^^^^
  113. #
  114. # :command:`matlab_get_version_from_release_name`
  115. # returns the version from the release name
  116. # :command:`matlab_get_release_name_from_version`
  117. # returns the release name from the Matlab version
  118. #
  119. # Provided functions
  120. # ^^^^^^^^^^^^^^^^^^
  121. #
  122. # :command:`matlab_add_mex`
  123. # adds a target compiling a MEX file.
  124. # :command:`matlab_add_unit_test`
  125. # adds a Matlab unit test file as a test to the project.
  126. # :command:`matlab_extract_all_installed_versions_from_registry`
  127. # parses the registry for all Matlab versions. Available on Windows only.
  128. # The part of the registry parsed is dependent on the host processor
  129. # :command:`matlab_get_all_valid_matlab_roots_from_registry`
  130. # returns all the possible Matlab paths, according to a previously
  131. # given list. Only the existing/accessible paths are kept. This is mainly
  132. # useful for the searching all possible Matlab installation.
  133. # :command:`matlab_get_mex_suffix`
  134. # returns the suffix to be used for the mex files
  135. # (platform/architecture dependent)
  136. # :command:`matlab_get_version_from_matlab_run`
  137. # returns the version of Matlab, given the full directory of the Matlab
  138. # program.
  139. #
  140. #
  141. # Known issues
  142. # ^^^^^^^^^^^^
  143. #
  144. # **Symbol clash in a MEX target**
  145. # By default, every symbols inside a MEX
  146. # file defined with the command :command:`matlab_add_mex` have hidden
  147. # visibility, except for the entry point. This is the default behaviour of
  148. # the MEX compiler, which lowers the risk of symbol collision between the
  149. # libraries shipped with Matlab, and the libraries to which the MEX file is
  150. # linking to. This is also the default on Windows platforms.
  151. #
  152. # However, this is not sufficient in certain case, where for instance your
  153. # MEX file is linking against libraries that are already loaded by Matlab,
  154. # even if those libraries have different SONAMES.
  155. # A possible solution is to hide the symbols of the libraries to which the
  156. # MEX target is linking to. This can be achieved in GNU GCC compilers with
  157. # the linker option ``-Wl,--exclude-libs,ALL``.
  158. #
  159. # **Tests using GPU resources**
  160. # in case your MEX file is using the GPU and
  161. # in order to be able to run unit tests on this MEX file, the GPU resources
  162. # should be properly released by Matlab. A possible solution is to make
  163. # Matlab aware of the use of the GPU resources in the session, which can be
  164. # performed by a command such as ``D = gpuDevice()`` at the beginning of
  165. # the test script (or via a fixture).
  166. #
  167. #
  168. # Reference
  169. # ^^^^^^^^^
  170. #
  171. # .. variable:: Matlab_ROOT_DIR
  172. #
  173. # The root folder of the Matlab installation. If set before the call to
  174. # :command:`find_package`, the module will look for the components in that
  175. # path. If not set, then an automatic search of Matlab
  176. # will be performed. If set, it should point to a valid version of Matlab.
  177. #
  178. # .. variable:: MATLAB_FIND_DEBUG
  179. #
  180. # If set, the lookup of Matlab and the intermediate configuration steps are
  181. # outputted to the console.
  182. #
  183. # .. variable:: MATLAB_ADDITIONAL_VERSIONS
  184. #
  185. # If set, specifies additional versions of Matlab that may be looked for.
  186. # The variable should be a list of strings, organised by pairs of release
  187. # name and versions, such as follows::
  188. #
  189. # set(MATLAB_ADDITIONAL_VERSIONS
  190. # "release_name1=corresponding_version1"
  191. # "release_name2=corresponding_version2"
  192. # ...
  193. # )
  194. #
  195. # Example::
  196. #
  197. # set(MATLAB_ADDITIONAL_VERSIONS
  198. # "R2013b=8.2"
  199. # "R2013a=8.1"
  200. # "R2012b=8.0")
  201. #
  202. # The order of entries in this list matters when several versions of
  203. # Matlab are installed. The priority is set according to the ordering in
  204. # this list.
  205. #=============================================================================
  206. # Copyright 2014-2015 Raffi Enficiaud, Max Planck Society
  207. #
  208. # Distributed under the OSI-approved BSD License (the "License");
  209. # see accompanying file Copyright.txt for details.
  210. #
  211. # This software is distributed WITHOUT ANY WARRANTY; without even the
  212. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  213. # See the License for more information.
  214. #=============================================================================
  215. # (To distribute this file outside of CMake, substitute the full
  216. # License text for the above reference.)
  217. set(_FindMatlab_SELF_DIR "${CMAKE_CURRENT_LIST_DIR}")
  218. include(FindPackageHandleStandardArgs)
  219. include(CheckCXXCompilerFlag)
  220. # The currently supported versions. Other version can be added by the user by
  221. # providing MATLAB_ADDITIONAL_VERSIONS
  222. if(NOT MATLAB_ADDITIONAL_VERSIONS)
  223. set(MATLAB_ADDITIONAL_VERSIONS)
  224. endif()
  225. set(MATLAB_VERSIONS_MAPPING
  226. "R2016a=9.0"
  227. "R2015b=8.6"
  228. "R2015a=8.5"
  229. "R2014b=8.4"
  230. "R2014a=8.3"
  231. "R2013b=8.2"
  232. "R2013a=8.1"
  233. "R2012b=8.0"
  234. "R2012a=7.14"
  235. "R2011b=7.13"
  236. "R2011a=7.12"
  237. "R2010b=7.11"
  238. ${MATLAB_ADDITIONAL_VERSIONS}
  239. )
  240. # temporary folder for all Matlab runs
  241. set(_matlab_temporary_folder ${CMAKE_BINARY_DIR}/Matlab)
  242. if(NOT EXISTS "${_matlab_temporary_folder}")
  243. file(MAKE_DIRECTORY "${_matlab_temporary_folder}")
  244. endif()
  245. #.rst:
  246. # .. command:: matlab_get_version_from_release_name
  247. #
  248. # Returns the version of Matlab (17.58) from a release name (R2017k)
  249. macro (matlab_get_version_from_release_name release_name version_name)
  250. string(REGEX MATCHALL "${release_name}=([0-9]+\\.?[0-9]*)" _matched ${MATLAB_VERSIONS_MAPPING})
  251. set(${version_name} "")
  252. if(NOT _matched STREQUAL "")
  253. set(${version_name} ${CMAKE_MATCH_1})
  254. else()
  255. message(WARNING "The release name ${release_name} is not registered")
  256. endif()
  257. unset(_matched)
  258. endmacro()
  259. #.rst:
  260. # .. command:: matlab_get_release_name_from_version
  261. #
  262. # Returns the release name (R2017k) from the version of Matlab (17.58)
  263. macro (matlab_get_release_name_from_version version release_name)
  264. set(${release_name} "")
  265. foreach(_var IN LISTS MATLAB_VERSIONS_MAPPING)
  266. string(REGEX MATCHALL "(.+)=${version}" _matched ${_var})
  267. if(NOT _matched STREQUAL "")
  268. set(${release_name} ${CMAKE_MATCH_1})
  269. break()
  270. endif()
  271. endforeach(_var)
  272. unset(_var)
  273. unset(_matched)
  274. if(${release_name} STREQUAL "")
  275. message(WARNING "The version ${version} is not registered")
  276. endif()
  277. endmacro()
  278. # extracts all the supported release names (R2017k...) of Matlab
  279. # internal use
  280. macro(matlab_get_supported_releases list_releases)
  281. set(${list_releases})
  282. foreach(_var IN LISTS MATLAB_VERSIONS_MAPPING)
  283. string(REGEX MATCHALL "(.+)=([0-9]+\\.?[0-9]*)" _matched ${_var})
  284. if(NOT _matched STREQUAL "")
  285. list(APPEND ${list_releases} ${CMAKE_MATCH_1})
  286. endif()
  287. unset(_matched)
  288. unset(CMAKE_MATCH_1)
  289. endforeach(_var)
  290. unset(_var)
  291. endmacro()
  292. # extracts all the supported versions of Matlab
  293. # internal use
  294. macro(matlab_get_supported_versions list_versions)
  295. set(${list_versions})
  296. foreach(_var IN LISTS MATLAB_VERSIONS_MAPPING)
  297. string(REGEX MATCHALL "(.+)=([0-9]+\\.?[0-9]*)" _matched ${_var})
  298. if(NOT _matched STREQUAL "")
  299. list(APPEND ${list_versions} ${CMAKE_MATCH_2})
  300. endif()
  301. unset(_matched)
  302. unset(CMAKE_MATCH_1)
  303. endforeach(_var)
  304. unset(_var)
  305. endmacro()
  306. #.rst:
  307. # .. command:: matlab_extract_all_installed_versions_from_registry
  308. #
  309. # This function parses the registry and founds the Matlab versions that are
  310. # installed. The found versions are returned in `matlab_versions`.
  311. # Set `win64` to `TRUE` if the 64 bit version of Matlab should be looked for
  312. # The returned list contains all versions under
  313. # ``HKLM\\SOFTWARE\\Mathworks\\MATLAB`` or an empty list in case an error
  314. # occurred (or nothing found).
  315. #
  316. # .. note::
  317. #
  318. # Only the versions are provided. No check is made over the existence of the
  319. # installation referenced in the registry,
  320. #
  321. function(matlab_extract_all_installed_versions_from_registry win64 matlab_versions)
  322. if(NOT CMAKE_HOST_WIN32)
  323. message(FATAL_ERROR "This macro can only be called by a windows host (call to reg.exe")
  324. endif()
  325. if(${win64} AND ${CMAKE_HOST_SYSTEM_PROCESSOR} MATCHES "64")
  326. set(APPEND_REG "/reg:64")
  327. else()
  328. set(APPEND_REG "/reg:32")
  329. endif()
  330. # /reg:64 should be added on 64 bits capable OSs in order to enable the
  331. # redirection of 64 bits applications
  332. execute_process(
  333. COMMAND reg query HKEY_LOCAL_MACHINE\\SOFTWARE\\Mathworks\\MATLAB /f * /k ${APPEND_REG}
  334. RESULT_VARIABLE resultMatlab
  335. OUTPUT_VARIABLE varMatlab
  336. ERROR_VARIABLE errMatlab
  337. INPUT_FILE NUL
  338. )
  339. set(matlabs_from_registry)
  340. if(${resultMatlab} EQUAL 0)
  341. string(
  342. REGEX MATCHALL "MATLAB\\\\([0-9]+(\\.[0-9]+)?)"
  343. matlab_versions_regex ${varMatlab})
  344. foreach(match IN LISTS matlab_versions_regex)
  345. string(
  346. REGEX MATCH "MATLAB\\\\(([0-9]+)(\\.([0-9]+))?)"
  347. current_match ${match})
  348. set(_matlab_current_version ${CMAKE_MATCH_1})
  349. set(current_matlab_version_major ${CMAKE_MATCH_2})
  350. set(current_matlab_version_minor ${CMAKE_MATCH_4})
  351. if(NOT current_matlab_version_minor)
  352. set(current_matlab_version_minor "0")
  353. endif()
  354. list(APPEND matlabs_from_registry ${_matlab_current_version})
  355. unset(_matlab_current_version)
  356. endforeach(match)
  357. endif()
  358. if(matlabs_from_registry)
  359. list(REMOVE_DUPLICATES matlabs_from_registry)
  360. list(SORT matlabs_from_registry)
  361. list(REVERSE matlabs_from_registry)
  362. endif()
  363. set(${matlab_versions} ${matlabs_from_registry} PARENT_SCOPE)
  364. endfunction()
  365. # (internal)
  366. macro(extract_matlab_versions_from_registry_brute_force matlab_versions)
  367. # get the supported versions
  368. set(matlab_supported_versions)
  369. matlab_get_supported_versions(matlab_supported_versions)
  370. # this is a manual population of the versions we want to look for
  371. # this can be done as is, but preferably with the call to
  372. # matlab_get_supported_versions and variable
  373. # populating the versions we want to look for
  374. # set(matlab_supported_versions)
  375. # # Matlab 7
  376. # set(matlab_major 7)
  377. # foreach(current_matlab_minor RANGE 4 20)
  378. # list(APPEND matlab_supported_versions "${matlab_major}.${current_matlab_minor}")
  379. # endforeach(current_matlab_minor)
  380. # # Matlab 8
  381. # set(matlab_major 8)
  382. # foreach(current_matlab_minor RANGE 0 5)
  383. # list(APPEND matlab_supported_versions "${matlab_major}.${current_matlab_minor}")
  384. # endforeach(current_matlab_minor)
  385. # # taking into account the possible additional versions provided by the user
  386. # if(DEFINED MATLAB_ADDITIONAL_VERSIONS)
  387. # list(APPEND matlab_supported_versions MATLAB_ADDITIONAL_VERSIONS)
  388. # endif()
  389. # we order from more recent to older
  390. if(matlab_supported_versions)
  391. list(REMOVE_DUPLICATES matlab_supported_versions)
  392. list(SORT matlab_supported_versions)
  393. list(REVERSE matlab_supported_versions)
  394. endif()
  395. set(${matlab_versions} ${matlab_supported_versions})
  396. endmacro()
  397. #.rst:
  398. # .. command:: matlab_get_all_valid_matlab_roots_from_registry
  399. #
  400. # Populates the Matlab root with valid versions of Matlab.
  401. # The returned matlab_roots is organized in pairs
  402. # ``(version_number,matlab_root_path)``.
  403. #
  404. # ::
  405. #
  406. # matlab_get_all_valid_matlab_roots_from_registry(
  407. # matlab_versions
  408. # matlab_roots)
  409. #
  410. # ``matlab_versions``
  411. # the versions of each of the Matlab installations
  412. # ``matlab_roots``
  413. # the location of each of the Matlab installations
  414. function(matlab_get_all_valid_matlab_roots_from_registry matlab_versions matlab_roots)
  415. # The matlab_versions comes either from
  416. # extract_matlab_versions_from_registry_brute_force or
  417. # matlab_extract_all_installed_versions_from_registry.
  418. set(_matlab_roots_list )
  419. foreach(_matlab_current_version ${matlab_versions})
  420. get_filename_component(
  421. current_MATLAB_ROOT
  422. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MathWorks\\MATLAB\\${_matlab_current_version};MATLABROOT]"
  423. ABSOLUTE)
  424. if(EXISTS ${current_MATLAB_ROOT})
  425. list(APPEND _matlab_roots_list ${_matlab_current_version} ${current_MATLAB_ROOT})
  426. endif()
  427. endforeach(_matlab_current_version)
  428. unset(_matlab_current_version)
  429. set(${matlab_roots} ${_matlab_roots_list} PARENT_SCOPE)
  430. unset(_matlab_roots_list)
  431. endfunction()
  432. #.rst:
  433. # .. command:: matlab_get_mex_suffix
  434. #
  435. # Returns the extension of the mex files (the suffixes).
  436. # This function should not be called before the appropriate Matlab root has
  437. # been found.
  438. #
  439. # ::
  440. #
  441. # matlab_get_mex_suffix(
  442. # matlab_root
  443. # mex_suffix)
  444. #
  445. # ``matlab_root``
  446. # the root of the Matlab installation
  447. # ``mex_suffix``
  448. # the variable name in which the suffix will be returned.
  449. function(matlab_get_mex_suffix matlab_root mex_suffix)
  450. # todo setup the extension properly. Currently I do not know if this is
  451. # sufficient for all win32 distributions.
  452. # there is also CMAKE_EXECUTABLE_SUFFIX that could be tweaked
  453. set(mexext_suffix "")
  454. if(WIN32)
  455. list(APPEND mexext_suffix ".bat")
  456. endif()
  457. # we first try without suffix, since cmake does not understand a list with
  458. # one empty string element
  459. find_program(
  460. Matlab_MEXEXTENSIONS_PROG
  461. NAMES mexext
  462. PATHS ${matlab_root}/bin
  463. DOC "Matlab MEX extension provider"
  464. NO_DEFAULT_PATH
  465. )
  466. foreach(current_mexext_suffix IN LISTS mexext_suffix)
  467. if(NOT DEFINED Matlab_MEXEXTENSIONS_PROG OR NOT Matlab_MEXEXTENSIONS_PROG)
  468. # this call should populate the cache automatically
  469. find_program(
  470. Matlab_MEXEXTENSIONS_PROG
  471. "mexext${current_mexext_suffix}"
  472. PATHS ${matlab_root}/bin
  473. DOC "Matlab MEX extension provider"
  474. NO_DEFAULT_PATH
  475. )
  476. endif()
  477. endforeach(current_mexext_suffix)
  478. # the program has been found?
  479. if((NOT Matlab_MEXEXTENSIONS_PROG) OR (NOT EXISTS ${Matlab_MEXEXTENSIONS_PROG}))
  480. if(MATLAB_FIND_DEBUG)
  481. message(WARNING "[MATLAB] Cannot found mexext program. Matlab root is ${matlab_root}")
  482. endif()
  483. unset(Matlab_MEXEXTENSIONS_PROG CACHE)
  484. return()
  485. endif()
  486. set(_matlab_mex_extension)
  487. set(devnull)
  488. if(UNIX)
  489. set(devnull INPUT_FILE /dev/null)
  490. elseif(WIN32)
  491. set(devnull INPUT_FILE NUL)
  492. endif()
  493. execute_process(
  494. COMMAND ${Matlab_MEXEXTENSIONS_PROG}
  495. OUTPUT_VARIABLE _matlab_mex_extension
  496. ERROR_VARIABLE _matlab_mex_extension_error
  497. ${devnull})
  498. string(STRIP ${_matlab_mex_extension} _matlab_mex_extension)
  499. unset(Matlab_MEXEXTENSIONS_PROG CACHE)
  500. set(${mex_suffix} ${_matlab_mex_extension} PARENT_SCOPE)
  501. endfunction()
  502. #.rst:
  503. # .. command:: matlab_get_version_from_matlab_run
  504. #
  505. # This function runs Matlab program specified on arguments and extracts its
  506. # version.
  507. #
  508. # ::
  509. #
  510. # matlab_get_version_from_matlab_run(
  511. # matlab_binary_path
  512. # matlab_list_versions)
  513. #
  514. # ``matlab_binary_path``
  515. # the location of the `matlab` binary executable
  516. # ``matlab_list_versions``
  517. # the version extracted from Matlab
  518. function(matlab_get_version_from_matlab_run matlab_binary_program matlab_list_versions)
  519. set(${matlab_list_versions} "" PARENT_SCOPE)
  520. if(MATLAB_FIND_DEBUG)
  521. message(STATUS "[MATLAB] Determining the version of Matlab from ${matlab_binary_program}")
  522. endif()
  523. if(EXISTS "${_matlab_temporary_folder}/matlabVersionLog.cmaketmp")
  524. if(MATLAB_FIND_DEBUG)
  525. message(STATUS "[MATLAB] Removing previous ${_matlab_temporary_folder}/matlabVersionLog.cmaketmp file")
  526. endif()
  527. file(REMOVE "${_matlab_temporary_folder}/matlabVersionLog.cmaketmp")
  528. endif()
  529. # the log file is needed since on windows the command executes in a new
  530. # window and it is not possible to get back the answer of Matlab
  531. # the -wait command is needed on windows, otherwise the call returns
  532. # immediately after the program launches itself.
  533. if(WIN32)
  534. set(_matlab_additional_commands "-wait")
  535. endif()
  536. set(devnull)
  537. if(UNIX)
  538. set(devnull INPUT_FILE /dev/null)
  539. elseif(WIN32)
  540. set(devnull INPUT_FILE NUL)
  541. endif()
  542. # timeout set to 30 seconds, in case it does not start
  543. # note as said before OUTPUT_VARIABLE cannot be used in a platform
  544. # independent manner however, not setting it would flush the output of Matlab
  545. # in the current console (unix variant)
  546. execute_process(
  547. COMMAND "${matlab_binary_program}" -nosplash -nojvm ${_matlab_additional_commands} -logfile "matlabVersionLog.cmaketmp" -nodesktop -nodisplay -r "version, exit"
  548. OUTPUT_VARIABLE _matlab_version_from_cmd_dummy
  549. RESULT_VARIABLE _matlab_result_version_call
  550. ERROR_VARIABLE _matlab_result_version_call_error
  551. TIMEOUT 30
  552. WORKING_DIRECTORY "${_matlab_temporary_folder}"
  553. ${devnull}
  554. )
  555. if(${_matlab_result_version_call})
  556. if(MATLAB_FIND_DEBUG)
  557. message(WARNING "[MATLAB] Unable to determine the version of Matlab. Matlab call returned with error ${_matlab_result_version_call}.")
  558. endif()
  559. return()
  560. elseif(NOT EXISTS "${_matlab_temporary_folder}/matlabVersionLog.cmaketmp")
  561. if(MATLAB_FIND_DEBUG)
  562. message(WARNING "[MATLAB] Unable to determine the version of Matlab. The log file does not exist.")
  563. endif()
  564. return()
  565. endif()
  566. # if successful, read back the log
  567. file(READ "${_matlab_temporary_folder}/matlabVersionLog.cmaketmp" _matlab_version_from_cmd)
  568. file(REMOVE "${_matlab_temporary_folder}/matlabVersionLog.cmaketmp")
  569. set(index -1)
  570. string(FIND ${_matlab_version_from_cmd} "ans" index)
  571. if(index EQUAL -1)
  572. if(MATLAB_FIND_DEBUG)
  573. message(WARNING "[MATLAB] Cannot find the version of Matlab returned by the run.")
  574. endif()
  575. else()
  576. set(matlab_list_of_all_versions_tmp)
  577. string(SUBSTRING ${_matlab_version_from_cmd} ${index} -1 substring_ans)
  578. string(
  579. REGEX MATCHALL "ans[\r\n\t ]*=[\r\n\t ]*([0-9]+(\\.[0-9]+)?)"
  580. matlab_versions_regex
  581. ${substring_ans})
  582. foreach(match IN LISTS matlab_versions_regex)
  583. string(
  584. REGEX MATCH "ans[\r\n\t ]*=[\r\n\t ]*(([0-9]+)(\\.([0-9]+))?)"
  585. current_match ${match})
  586. list(APPEND matlab_list_of_all_versions_tmp ${CMAKE_MATCH_1})
  587. endforeach()
  588. if(matlab_list_of_all_versions_tmp)
  589. list(REMOVE_DUPLICATES matlab_list_of_all_versions_tmp)
  590. endif()
  591. set(${matlab_list_versions} ${matlab_list_of_all_versions_tmp} PARENT_SCOPE)
  592. endif()
  593. endfunction()
  594. #.rst:
  595. # .. command:: matlab_add_unit_test
  596. #
  597. # Adds a Matlab unit test to the test set of cmake/ctest.
  598. # This command requires the component ``MAIN_PROGRAM``.
  599. # The unit test uses the Matlab unittest framework (default, available
  600. # starting Matlab 2013b+) except if the option ``NO_UNITTEST_FRAMEWORK``
  601. # is given.
  602. #
  603. # The function expects one Matlab test script file to be given.
  604. # In the case ``NO_UNITTEST_FRAMEWORK`` is given, the unittest script file
  605. # should contain the script to be run, plus an exit command with the exit
  606. # value. This exit value will be passed to the ctest framework (0 success,
  607. # non 0 failure). Additional arguments accepted by :command:`add_test` can be
  608. # passed through ``TEST_ARGS`` (eg. ``CONFIGURATION <config> ...``).
  609. #
  610. # ::
  611. #
  612. # matlab_add_unit_test(
  613. # NAME <name>
  614. # UNITTEST_FILE matlab_file_containing_unittest.m
  615. # [UNITTEST_PRECOMMAND matlab_command_to_run]
  616. # [TIMEOUT timeout]
  617. # [ADDITIONAL_PATH path1 [path2 ...]]
  618. # [MATLAB_ADDITIONAL_STARTUP_OPTIONS option1 [option2 ...]]
  619. # [TEST_ARGS arg1 [arg2 ...]]
  620. # [NO_UNITTEST_FRAMEWORK]
  621. # )
  622. #
  623. # The function arguments are:
  624. #
  625. # ``NAME``
  626. # name of the unittest in ctest.
  627. # ``UNITTEST_FILE``
  628. # the matlab unittest file. Its path will be automatically
  629. # added to the Matlab path.
  630. # ``UNITTEST_PRECOMMAND``
  631. # Matlab script command to be ran before the file
  632. # containing the test (eg. GPU device initialisation based on CMake
  633. # variables).
  634. # ``TIMEOUT``
  635. # the test timeout in seconds. Defaults to 180 seconds as the
  636. # Matlab unit test may hang.
  637. # ``ADDITIONAL_PATH``
  638. # a list of paths to add to the Matlab path prior to
  639. # running the unit test.
  640. # ``MATLAB_ADDITIONAL_STARTUP_OPTIONS``
  641. # a list of additional option in order
  642. # to run Matlab from the command line.
  643. # ``TEST_ARGS``
  644. # Additional options provided to the add_test command. These
  645. # options are added to the default options (eg. "CONFIGURATIONS Release")
  646. # ``NO_UNITTEST_FRAMEWORK``
  647. # when set, indicates that the test should not
  648. # use the unittest framework of Matlab (available for versions >= R2013a).
  649. #
  650. function(matlab_add_unit_test)
  651. if(NOT Matlab_MAIN_PROGRAM)
  652. message(FATAL_ERROR "[MATLAB] This functionality needs the MAIN_PROGRAM component (not default)")
  653. endif()
  654. set(options NO_UNITTEST_FRAMEWORK)
  655. set(oneValueArgs NAME UNITTEST_PRECOMMAND UNITTEST_FILE TIMEOUT)
  656. set(multiValueArgs ADDITIONAL_PATH MATLAB_ADDITIONAL_STARTUP_OPTIONS TEST_ARGS)
  657. set(prefix _matlab_unittest_prefix)
  658. cmake_parse_arguments(${prefix} "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} )
  659. if(NOT ${prefix}_NAME)
  660. message(FATAL_ERROR "[MATLAB] The Matlab test name cannot be empty")
  661. endif()
  662. add_test(NAME ${${prefix}_NAME}
  663. COMMAND ${CMAKE_COMMAND}
  664. -Dtest_name=${${prefix}_NAME}
  665. -Dadditional_paths=${${prefix}_ADDITIONAL_PATH}
  666. -Dtest_timeout=${${prefix}_TIMEOUT}
  667. -Doutput_directory=${_matlab_temporary_folder}
  668. -DMatlab_PROGRAM=${Matlab_MAIN_PROGRAM}
  669. -Dno_unittest_framework=${${prefix}_NO_UNITTEST_FRAMEWORK}
  670. -DMatlab_ADDITIONNAL_STARTUP_OPTIONS=${${prefix}_MATLAB_ADDITIONAL_STARTUP_OPTIONS}
  671. -Dunittest_file_to_run=${${prefix}_UNITTEST_FILE}
  672. -Dcmd_to_run_before_test=${${prefix}_UNITTEST_PRECOMMAND}
  673. -P ${_FindMatlab_SELF_DIR}/MatlabTestsRedirect.cmake
  674. ${${prefix}_TEST_ARGS}
  675. ${${prefix}_UNPARSED_ARGUMENTS}
  676. )
  677. endfunction()
  678. #.rst:
  679. # .. command:: matlab_add_mex
  680. #
  681. # Adds a Matlab MEX target.
  682. # This commands compiles the given sources with the current tool-chain in
  683. # order to produce a MEX file. The final name of the produced output may be
  684. # specified, as well as additional link libraries, and a documentation entry
  685. # for the MEX file. Remaining arguments of the call are passed to the
  686. # :command:`add_library` command.
  687. #
  688. # ::
  689. #
  690. # matlab_add_mex(
  691. # NAME <name>
  692. # SRC src1 [src2 ...]
  693. # [OUTPUT_NAME output_name]
  694. # [DOCUMENTATION file.txt]
  695. # [LINK_TO target1 target2 ...]
  696. # [...]
  697. # )
  698. #
  699. # ``NAME``
  700. # name of the target.
  701. # ``SRC``
  702. # list of tje source files.
  703. # ``LINK_TO``
  704. # a list of additional link dependencies. The target links to ``libmex``
  705. # by default. If ``Matlab_MX_LIBRARY`` is defined, it also
  706. # links to ``libmx``.
  707. # ``OUTPUT_NAME``
  708. # if given, overrides the default name. The default name is
  709. # the name of the target without any prefix and
  710. # with ``Matlab_MEX_EXTENSION`` suffix.
  711. # ``DOCUMENTATION``
  712. # if given, the file ``file.txt`` will be considered as
  713. # being the documentation file for the MEX file. This file is copied into
  714. # the same folder without any processing, with the same name as the final
  715. # mex file, and with extension `.m`. In that case, typing ``help <name>``
  716. # in Matlab prints the documentation contained in this file.
  717. #
  718. # The documentation file is not processed and should be in the following
  719. # format:
  720. #
  721. # ::
  722. #
  723. # % This is the documentation
  724. # function ret = mex_target_output_name(input1)
  725. #
  726. function(matlab_add_mex )
  727. if(NOT WIN32)
  728. # we do not need all this on Windows
  729. # pthread options
  730. check_cxx_compiler_flag(-pthread HAS_MINUS_PTHREAD)
  731. # we should use try_compile instead, the link flags are discarded from
  732. # this compiler_flag function.
  733. #check_cxx_compiler_flag(-Wl,--exclude-libs,ALL HAS_SYMBOL_HIDING_CAPABILITY)
  734. endif()
  735. set(oneValueArgs NAME DOCUMENTATION OUTPUT_NAME)
  736. set(multiValueArgs LINK_TO SRC)
  737. set(prefix _matlab_addmex_prefix)
  738. cmake_parse_arguments(${prefix} "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} )
  739. if(NOT ${prefix}_NAME)
  740. message(FATAL_ERROR "[MATLAB] The MEX target name cannot be empty")
  741. endif()
  742. if(NOT ${prefix}_OUTPUT_NAME)
  743. set(${prefix}_OUTPUT_NAME ${${prefix}_NAME})
  744. endif()
  745. add_library(${${prefix}_NAME}
  746. SHARED
  747. ${${prefix}_SRC}
  748. ${${prefix}_DOCUMENTATION}
  749. ${${prefix}_UNPARSED_ARGUMENTS})
  750. target_include_directories(${${prefix}_NAME} PRIVATE ${Matlab_INCLUDE_DIRS})
  751. if(DEFINED Matlab_MX_LIBRARY)
  752. target_link_libraries(${${prefix}_NAME} ${Matlab_MX_LIBRARY})
  753. endif()
  754. target_link_libraries(${${prefix}_NAME} ${Matlab_MEX_LIBRARY} ${${prefix}_LINK_TO})
  755. set_target_properties(${${prefix}_NAME}
  756. PROPERTIES
  757. PREFIX ""
  758. OUTPUT_NAME ${${prefix}_OUTPUT_NAME}
  759. SUFFIX ".${Matlab_MEX_EXTENSION}")
  760. # documentation
  761. if(NOT ${${prefix}_DOCUMENTATION} STREQUAL "")
  762. get_target_property(output_name ${${prefix}_NAME} OUTPUT_NAME)
  763. add_custom_command(
  764. TARGET ${${prefix}_NAME}
  765. PRE_BUILD
  766. COMMAND ${CMAKE_COMMAND} -E copy_if_different ${${prefix}_DOCUMENTATION} $<TARGET_FILE_DIR:${${prefix}_NAME}>/${output_name}.m
  767. COMMENT "Copy ${${prefix}_NAME} documentation file into the output folder"
  768. )
  769. endif() # documentation
  770. # entry point in the mex file + taking care of visibility and symbol clashes.
  771. if(WIN32)
  772. set_target_properties(${${prefix}_NAME}
  773. PROPERTIES
  774. DEFINE_SYMBOL "DLL_EXPORT_SYM=__declspec(dllexport)")
  775. else()
  776. if(HAS_MINUS_PTHREAD AND NOT APPLE)
  777. # Apparently, compiling with -pthread generated the proper link flags
  778. # and some defines at compilation
  779. target_compile_options(${${prefix}_NAME} PRIVATE "-pthread")
  780. endif()
  781. # if we do not do that, the symbols linked from eg. boost remain weak and
  782. # then clash with the ones defined in the matlab process. So by default
  783. # the symbols are hidden.
  784. # This also means that for shared libraries (like MEX), the entry point
  785. # should be explicitly declared with default visibility, otherwise Matlab
  786. # cannot find the entry point.
  787. # Note that this is particularly meaningful if the MEX wrapper itself
  788. # contains symbols that are clashing with Matlab (that are compiled in the
  789. # MEX file). In order to propagate the visibility options to the libraries
  790. # to which the MEX file is linked against, the -Wl,--exclude-libs,ALL
  791. # option should also be specified.
  792. set_target_properties(${${prefix}_NAME}
  793. PROPERTIES
  794. CXX_VISIBILITY_PRESET "hidden"
  795. C_VISIBILITY_PRESET "hidden"
  796. VISIBILITY_INLINES_HIDDEN ON
  797. )
  798. # get_target_property(
  799. # _previous_link_flags
  800. # ${${prefix}_NAME}
  801. # LINK_FLAGS)
  802. # if(NOT _previous_link_flags)
  803. # set(_previous_link_flags)
  804. # endif()
  805. # if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
  806. # set_target_properties(${${prefix}_NAME}
  807. # PROPERTIES
  808. # LINK_FLAGS "${_previous_link_flags} -Wl,--exclude-libs,ALL"
  809. # # -Wl,--version-script=${_FindMatlab_SELF_DIR}/MatlabLinuxVisibility.map"
  810. # )
  811. # elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
  812. # # in this case, all other symbols become hidden.
  813. # set_target_properties(${${prefix}_NAME}
  814. # PROPERTIES
  815. # LINK_FLAGS "${_previous_link_flags} -Wl,-exported_symbol,_mexFunction"
  816. # #-Wl,-exported_symbols_list,${_FindMatlab_SELF_DIR}/MatlabOSXVisilibity.map"
  817. # )
  818. # endif()
  819. set_target_properties(${${prefix}_NAME}
  820. PROPERTIES
  821. DEFINE_SYMBOL "DLL_EXPORT_SYM=__attribute__ ((visibility (\"default\")))"
  822. )
  823. endif()
  824. endfunction()
  825. # (internal)
  826. # Used to get the version of matlab, using caching. This basically transforms the
  827. # output of the root list, with possible unknown version, to a version
  828. #
  829. function(_Matlab_get_version_from_root matlab_root matlab_known_version matlab_final_version)
  830. # if the version is not trivial, we query matlab for that
  831. # we keep track of the location of matlab that induced this version
  832. #if(NOT DEFINED Matlab_PROG_VERSION_STRING_AUTO_DETECT)
  833. # set(Matlab_PROG_VERSION_STRING_AUTO_DETECT "" CACHE INTERNAL "internal matlab location for the discovered version")
  834. #endif()
  835. if(NOT ${matlab_known_version} STREQUAL "NOTFOUND")
  836. # the version is known, we just return it
  837. set(${matlab_final_version} ${matlab_known_version} PARENT_SCOPE)
  838. set(Matlab_VERSION_STRING_INTERNAL ${matlab_known_version} CACHE INTERNAL "Matlab version (automatically determined)" FORCE)
  839. return()
  840. endif()
  841. #
  842. set(_matlab_current_program ${Matlab_MAIN_PROGRAM})
  843. # do we already have a matlab program?
  844. if(NOT _matlab_current_program)
  845. set(_find_matlab_options)
  846. if(matlab_root AND EXISTS ${matlab_root})
  847. set(_find_matlab_options PATHS ${matlab_root} ${matlab_root}/bin NO_DEFAULT_PATH)
  848. endif()
  849. find_program(
  850. _matlab_current_program
  851. matlab
  852. ${_find_matlab_options}
  853. DOC "Matlab main program"
  854. )
  855. endif()
  856. if(NOT _matlab_current_program OR NOT EXISTS ${_matlab_current_program})
  857. # if not found, clear the dependent variables
  858. if(MATLAB_FIND_DEBUG)
  859. message(WARNING "[MATLAB] Cannot find the main matlab program under ${matlab_root}")
  860. endif()
  861. set(Matlab_PROG_VERSION_STRING_AUTO_DETECT "" CACHE INTERNAL "internal matlab location for the discovered version" FORCE)
  862. set(Matlab_VERSION_STRING_INTERNAL "" CACHE INTERNAL "internal matlab location for the discovered version" FORCE)
  863. unset(_matlab_current_program)
  864. unset(_matlab_current_program CACHE)
  865. return()
  866. endif()
  867. # full real path for path comparison
  868. get_filename_component(_matlab_main_real_path_tmp "${_matlab_current_program}" REALPATH)
  869. unset(_matlab_current_program)
  870. unset(_matlab_current_program CACHE)
  871. # is it the same as the previous one?
  872. if(_matlab_main_real_path_tmp STREQUAL Matlab_PROG_VERSION_STRING_AUTO_DETECT)
  873. set(${matlab_final_version} ${Matlab_VERSION_STRING_INTERNAL} PARENT_SCOPE)
  874. return()
  875. endif()
  876. # update the location of the program
  877. set(Matlab_PROG_VERSION_STRING_AUTO_DETECT ${_matlab_main_real_path_tmp} CACHE INTERNAL "internal matlab location for the discovered version" FORCE)
  878. set(matlab_list_of_all_versions)
  879. matlab_get_version_from_matlab_run("${Matlab_PROG_VERSION_STRING_AUTO_DETECT}" matlab_list_of_all_versions)
  880. list(GET matlab_list_of_all_versions 0 _matlab_version_tmp)
  881. # set the version into the cache
  882. set(Matlab_VERSION_STRING_INTERNAL ${_matlab_version_tmp} CACHE INTERNAL "Matlab version (automatically determined)" FORCE)
  883. # warning, just in case several versions found (should not happen)
  884. list(LENGTH matlab_list_of_all_versions list_of_all_versions_length)
  885. if((${list_of_all_versions_length} GREATER 1) AND MATLAB_FIND_DEBUG)
  886. message(WARNING "[MATLAB] Found several versions, taking the first one (versions found ${matlab_list_of_all_versions})")
  887. endif()
  888. # return the updated value
  889. set(${matlab_final_version} ${Matlab_VERSION_STRING_INTERNAL} PARENT_SCOPE)
  890. endfunction()
  891. # ###################################
  892. # Exploring the possible Matlab_ROOTS
  893. # this variable will get all Matlab installations found in the current system.
  894. set(_matlab_possible_roots)
  895. if(Matlab_ROOT_DIR)
  896. # if the user specifies a possible root, we keep this one
  897. if(NOT EXISTS ${Matlab_ROOT_DIR})
  898. # if Matlab_ROOT_DIR specified but erroneous
  899. if(MATLAB_FIND_DEBUG)
  900. message(WARNING "[MATLAB] the specified path for Matlab_ROOT_DIR does not exist (${Matlab_ROOT_DIR})")
  901. endif()
  902. else()
  903. # NOTFOUND indicates the code below to search for the version automatically
  904. if("${Matlab_VERSION_STRING_INTERNAL}" STREQUAL "")
  905. list(APPEND _matlab_possible_roots "NOTFOUND" ${Matlab_ROOT_DIR}) # empty version
  906. else()
  907. list(APPEND _matlab_possible_roots ${Matlab_VERSION_STRING_INTERNAL} ${Matlab_ROOT_DIR}) # cached version
  908. endif()
  909. endif()
  910. else()
  911. # if the user does not specify the possible installation root, we look for
  912. # one installation using the appropriate heuristics
  913. if(WIN32)
  914. # On WIN32, we look for Matlab installation in the registry
  915. # if unsuccessful, we look for all known revision and filter the existing
  916. # ones.
  917. # testing if we are able to extract the needed information from the registry
  918. set(_matlab_versions_from_registry)
  919. matlab_extract_all_installed_versions_from_registry(CMAKE_CL_64 _matlab_versions_from_registry)
  920. # the returned list is empty, doing the search on all known versions
  921. if(NOT _matlab_versions_from_registry)
  922. if(MATLAB_FIND_DEBUG)
  923. message(STATUS "[MATLAB] Search for Matlab from the registry unsuccessful, testing all supported versions")
  924. endif()
  925. extract_matlab_versions_from_registry_brute_force(_matlab_versions_from_registry)
  926. endif()
  927. # filtering the results with the registry keys
  928. matlab_get_all_valid_matlab_roots_from_registry("${_matlab_versions_from_registry}" _matlab_possible_roots)
  929. unset(_matlab_versions_from_registry)
  930. elseif(APPLE)
  931. # on mac, we look for the /Application paths
  932. # this corresponds to the behaviour on Windows. On Linux, we do not have
  933. # any other guess.
  934. matlab_get_supported_releases(_matlab_releases)
  935. if(MATLAB_FIND_DEBUG)
  936. message(STATUS "[MATLAB] Matlab supported versions ${_matlab_releases}. If more version should be supported "
  937. "the variable MATLAB_ADDITIONAL_VERSIONS can be set according to the documentation")
  938. endif()
  939. foreach(_matlab_current_release IN LISTS _matlab_releases)
  940. set(_matlab_full_string "/Applications/MATLAB_${_matlab_current_release}.app")
  941. if(EXISTS ${_matlab_full_string})
  942. set(_matlab_current_version)
  943. matlab_get_version_from_release_name("${_matlab_current_release}" _matlab_current_version)
  944. if(MATLAB_FIND_DEBUG)
  945. message(STATUS "[MATLAB] Found version ${_matlab_current_release} (${_matlab_current_version}) in ${_matlab_full_string}")
  946. endif()
  947. list(APPEND _matlab_possible_roots ${_matlab_current_version} ${_matlab_full_string})
  948. unset(_matlab_current_version)
  949. endif()
  950. unset(_matlab_full_string)
  951. endforeach(_matlab_current_release)
  952. unset(_matlab_current_release)
  953. unset(_matlab_releases)
  954. endif()
  955. endif()
  956. list(LENGTH _matlab_possible_roots _numbers_of_matlab_roots)
  957. if(_numbers_of_matlab_roots EQUAL 0)
  958. # if we have not found anything, we fall back on the PATH
  959. # At this point, we have no other choice than trying to find it from PATH.
  960. # If set by the user, this wont change
  961. find_program(
  962. _matlab_main_tmp
  963. NAMES matlab)
  964. if(_matlab_main_tmp)
  965. # we then populate the list of roots, with empty version
  966. if(MATLAB_FIND_DEBUG)
  967. message(STATUS "[MATLAB] matlab found from PATH: ${_matlab_main_tmp}")
  968. endif()
  969. # resolve symlinks
  970. get_filename_component(_matlab_current_location "${_matlab_main_tmp}" REALPATH)
  971. # get the directory (the command below has to be run twice)
  972. # this will be the matlab root
  973. get_filename_component(_matlab_current_location "${_matlab_current_location}" DIRECTORY)
  974. get_filename_component(_matlab_current_location "${_matlab_current_location}" DIRECTORY) # Matlab should be in bin
  975. list(APPEND _matlab_possible_roots "NOTFOUND" ${_matlab_current_location})
  976. unset(_matlab_current_location)
  977. endif()
  978. unset(_matlab_main_tmp CACHE)
  979. endif()
  980. if(MATLAB_FIND_DEBUG)
  981. message(STATUS "[MATLAB] Matlab root folders are ${_matlab_possible_roots}")
  982. endif()
  983. # take the first possible Matlab root
  984. list(LENGTH _matlab_possible_roots _numbers_of_matlab_roots)
  985. set(Matlab_VERSION_STRING "NOTFOUND")
  986. if(_numbers_of_matlab_roots GREATER 0)
  987. list(GET _matlab_possible_roots 0 Matlab_VERSION_STRING)
  988. list(GET _matlab_possible_roots 1 Matlab_ROOT_DIR)
  989. # adding a warning in case of ambiguity
  990. if(_numbers_of_matlab_roots GREATER 2 AND MATLAB_FIND_DEBUG)
  991. message(WARNING "[MATLAB] Found several distributions of Matlab. Setting the current version to ${Matlab_VERSION_STRING} (located ${Matlab_ROOT_DIR})."
  992. " If this is not the desired behaviour, provide the -DMatlab_ROOT_DIR=... on the command line")
  993. endif()
  994. endif()
  995. # check if the root changed against the previous defined one, if so
  996. # clear all the cached variables
  997. if(DEFINED Matlab_ROOT_DIR_LAST_CACHED)
  998. if(NOT Matlab_ROOT_DIR_LAST_CACHED STREQUAL Matlab_ROOT_DIR)
  999. set(_Matlab_cached_vars
  1000. Matlab_INCLUDE_DIRS
  1001. Matlab_MEX_LIBRARY
  1002. Matlab_MEX_COMPILER
  1003. Matlab_MAIN_PROGRAM
  1004. Matlab_MX_LIBRARY
  1005. Matlab_ENG_LIBRARY
  1006. Matlab_MEX_EXTENSION
  1007. # internal
  1008. Matlab_MEXEXTENSIONS_PROG
  1009. Matlab_ROOT_DIR_LAST_CACHED
  1010. #Matlab_PROG_VERSION_STRING_AUTO_DETECT
  1011. Matlab_VERSION_STRING_INTERNAL
  1012. )
  1013. foreach(_var IN LISTS _Matlab_cached_vars)
  1014. if(DEFINED ${_var})
  1015. unset(${_var} CACHE)
  1016. endif()
  1017. endforeach()
  1018. endif()
  1019. endif()
  1020. set(Matlab_ROOT_DIR_LAST_CACHED ${Matlab_ROOT_DIR} CACHE INTERNAL "last Matlab root dir location")
  1021. set(Matlab_ROOT_DIR ${Matlab_ROOT_DIR} CACHE PATH "Matlab installation root path" FORCE)
  1022. # Fix the version, in case this one is NOTFOUND
  1023. _Matlab_get_version_from_root(
  1024. "${Matlab_ROOT_DIR}"
  1025. ${Matlab_VERSION_STRING}
  1026. Matlab_VERSION_STRING
  1027. )
  1028. if(MATLAB_FIND_DEBUG)
  1029. message(STATUS "[MATLAB] Current version is ${Matlab_VERSION_STRING} located ${Matlab_ROOT_DIR}")
  1030. endif()
  1031. if(Matlab_ROOT_DIR)
  1032. file(TO_CMAKE_PATH ${Matlab_ROOT_DIR} Matlab_ROOT_DIR)
  1033. endif()
  1034. if(CMAKE_SIZEOF_VOID_P EQUAL 4)
  1035. set(_matlab_64Build FALSE)
  1036. else()
  1037. set(_matlab_64Build TRUE)
  1038. endif()
  1039. if(APPLE)
  1040. set(_matlab_bin_prefix "mac") # i should be for intel
  1041. set(_matlab_bin_suffix_32bits "i")
  1042. set(_matlab_bin_suffix_64bits "i64")
  1043. elseif(UNIX)
  1044. set(_matlab_bin_prefix "gln")
  1045. set(_matlab_bin_suffix_32bits "x86")
  1046. set(_matlab_bin_suffix_64bits "xa64")
  1047. else()
  1048. set(_matlab_bin_prefix "win")
  1049. set(_matlab_bin_suffix_32bits "32")
  1050. set(_matlab_bin_suffix_64bits "64")
  1051. endif()
  1052. set(MATLAB_INCLUDE_DIR_TO_LOOK ${Matlab_ROOT_DIR}/extern/include)
  1053. if(_matlab_64Build)
  1054. set(_matlab_current_suffix ${_matlab_bin_suffix_64bits})
  1055. else()
  1056. set(_matlab_current_suffix ${_matlab_bin_suffix_32bits})
  1057. endif()
  1058. set(Matlab_BINARIES_DIR
  1059. ${Matlab_ROOT_DIR}/bin/${_matlab_bin_prefix}${_matlab_current_suffix})
  1060. set(Matlab_EXTERN_LIBRARY_DIR
  1061. ${Matlab_ROOT_DIR}/extern/lib/${_matlab_bin_prefix}${_matlab_current_suffix})
  1062. if(WIN32)
  1063. set(_matlab_lib_dir_for_search ${Matlab_EXTERN_LIBRARY_DIR}/microsoft)
  1064. set(_matlab_lib_prefix_for_search "lib")
  1065. else()
  1066. set(_matlab_lib_dir_for_search ${Matlab_BINARIES_DIR})
  1067. set(_matlab_lib_prefix_for_search "lib")
  1068. endif()
  1069. unset(_matlab_64Build)
  1070. if(NOT DEFINED Matlab_MEX_EXTENSION)
  1071. set(_matlab_mex_extension "")
  1072. matlab_get_mex_suffix("${Matlab_ROOT_DIR}" _matlab_mex_extension)
  1073. # This variable goes to the cache.
  1074. set(Matlab_MEX_EXTENSION ${_matlab_mex_extension} CACHE STRING "Extensions for the mex targets (automatically given by Matlab)")
  1075. unset(_matlab_mex_extension)
  1076. endif()
  1077. if(MATLAB_FIND_DEBUG)
  1078. message(STATUS "[MATLAB] [DEBUG]_matlab_lib_prefix_for_search = ${_matlab_lib_prefix_for_search} | _matlab_lib_dir_for_search = ${_matlab_lib_dir_for_search}")
  1079. endif()
  1080. # internal
  1081. # This small stub around find_library is to prevent any pollution of CMAKE_FIND_LIBRARY_PREFIXES in the global scope.
  1082. # This is the function to be used below instead of the find_library directives.
  1083. function(_Matlab_find_library _matlab_library_prefix)
  1084. set(CMAKE_FIND_LIBRARY_PREFIXES ${CMAKE_FIND_LIBRARY_PREFIXES} ${_matlab_library_prefix})
  1085. find_library(${ARGN})
  1086. endfunction()
  1087. set(_matlab_required_variables)
  1088. # the MEX library/header are required
  1089. find_path(
  1090. Matlab_INCLUDE_DIRS
  1091. mex.h
  1092. PATHS ${MATLAB_INCLUDE_DIR_TO_LOOK}
  1093. NO_DEFAULT_PATH
  1094. )
  1095. list(APPEND _matlab_required_variables Matlab_INCLUDE_DIRS)
  1096. _Matlab_find_library(
  1097. ${_matlab_lib_prefix_for_search}
  1098. Matlab_MEX_LIBRARY
  1099. mex
  1100. PATHS ${_matlab_lib_dir_for_search}
  1101. NO_DEFAULT_PATH
  1102. )
  1103. list(APPEND _matlab_required_variables Matlab_MEX_LIBRARY)
  1104. # the MEX extension is required
  1105. list(APPEND _matlab_required_variables Matlab_MEX_EXTENSION)
  1106. # the matlab root is required
  1107. list(APPEND _matlab_required_variables Matlab_ROOT_DIR)
  1108. # component Mex Compiler
  1109. list(FIND Matlab_FIND_COMPONENTS MEX_COMPILER _matlab_find_mex_compiler)
  1110. if(_matlab_find_mex_compiler GREATER -1)
  1111. find_program(
  1112. Matlab_MEX_COMPILER
  1113. "mex"
  1114. PATHS ${Matlab_BINARIES_DIR}
  1115. DOC "Matlab MEX compiler"
  1116. NO_DEFAULT_PATH
  1117. )
  1118. if(Matlab_MEX_COMPILER)
  1119. set(Matlab_MEX_COMPILER_FOUND TRUE)
  1120. endif()
  1121. endif()
  1122. unset(_matlab_find_mex_compiler)
  1123. # component Matlab program
  1124. list(FIND Matlab_FIND_COMPONENTS MAIN_PROGRAM _matlab_find_matlab_program)
  1125. if(_matlab_find_matlab_program GREATER -1)
  1126. find_program(
  1127. Matlab_MAIN_PROGRAM
  1128. matlab
  1129. PATHS ${Matlab_ROOT_DIR} ${Matlab_ROOT_DIR}/bin
  1130. DOC "Matlab main program"
  1131. NO_DEFAULT_PATH
  1132. )
  1133. if(Matlab_MAIN_PROGRAM)
  1134. set(Matlab_MAIN_PROGRAM_FOUND TRUE)
  1135. endif()
  1136. endif()
  1137. unset(_matlab_find_matlab_program)
  1138. # Component MX library
  1139. list(FIND Matlab_FIND_COMPONENTS MX_LIBRARY _matlab_find_mx)
  1140. if(_matlab_find_mx GREATER -1)
  1141. _Matlab_find_library(
  1142. ${_matlab_lib_prefix_for_search}
  1143. Matlab_MX_LIBRARY
  1144. mx
  1145. PATHS ${_matlab_lib_dir_for_search}
  1146. NO_DEFAULT_PATH
  1147. )
  1148. if(Matlab_MX_LIBRARY)
  1149. set(Matlab_MX_LIBRARY_FOUND TRUE)
  1150. endif()
  1151. endif()
  1152. unset(_matlab_find_mx)
  1153. # Component ENG library
  1154. list(FIND Matlab_FIND_COMPONENTS ENG_LIBRARY _matlab_find_eng)
  1155. if(_matlab_find_eng GREATER -1)
  1156. _Matlab_find_library(
  1157. ${_matlab_lib_prefix_for_search}
  1158. Matlab_ENG_LIBRARY
  1159. eng
  1160. PATHS ${_matlab_lib_dir_for_search}
  1161. NO_DEFAULT_PATH
  1162. )
  1163. if(Matlab_ENG_LIBRARY)
  1164. set(Matlab_ENG_LIBRARY_FOUND TRUE)
  1165. endif()
  1166. endif()
  1167. unset(_matlab_find_eng)
  1168. unset(_matlab_lib_dir_for_search)
  1169. set(Matlab_LIBRARIES ${Matlab_MEX_LIBRARY} ${Matlab_MX_LIBRARY} ${Matlab_ENG_LIBRARY})
  1170. find_package_handle_standard_args(
  1171. Matlab
  1172. FOUND_VAR Matlab_FOUND
  1173. REQUIRED_VARS ${_matlab_required_variables}
  1174. VERSION_VAR Matlab_VERSION_STRING
  1175. HANDLE_COMPONENTS)
  1176. unset(_matlab_required_variables)
  1177. unset(_matlab_bin_prefix)
  1178. unset(_matlab_bin_suffix_32bits)
  1179. unset(_matlab_bin_suffix_64bits)
  1180. unset(_matlab_current_suffix)
  1181. unset(_matlab_lib_dir_for_search)
  1182. unset(_matlab_lib_prefix_for_search)
  1183. if(Matlab_INCLUDE_DIRS AND Matlab_LIBRARIES)
  1184. mark_as_advanced(
  1185. #Matlab_LIBRARIES
  1186. Matlab_MEX_LIBRARY
  1187. Matlab_MX_LIBRARY
  1188. Matlab_ENG_LIBRARY
  1189. Matlab_INCLUDE_DIRS
  1190. Matlab_FOUND
  1191. #Matlab_ROOT_DIR
  1192. #Matlab_VERSION_STRING
  1193. Matlab_MAIN_PROGRAM
  1194. #Matlab_MEX_EXTENSION
  1195. Matlab_MEXEXTENSIONS_PROG
  1196. Matlab_MEX_EXTENSION
  1197. #Matlab_BINARIES_DIR
  1198. )
  1199. endif()