summaryrefslogtreecommitdiffstats
path: root/Tests/FindMatlab
Commit message (Collapse)AuthorAgeFilesLines
* FindMatlab: Add imported targetsSilvio Traversaro2021-09-131-0/+44
|
* FindMatlab: EXCLUDE_FROM_ALL parameter to matlab_add_mexRaffi Enficiaud2019-06-262-0/+25
| | | | Enabling a mex target to be excluded from the `all` target.
* FindMatlab: Fix compilation error in one specific test configuration.Cris Luengo2018-10-291-0/+6
| | | | | | | `matlab_wrapper2.cpp` failed to compile in one specific test configuration. I've copied an odd workaround from `matlab_wrapper1.cpp`, which doesn't fail to compile. I presume this workaround was meant to address this issue, but can't verify this locally.
* FindMatlab: added unit tests for new functionality.Cris Luengo2018-10-248-8/+183
| | | | Also allowing a way to select which of multiple installed MATLAB versions to use in the test.
* FindMatlab: Matlab Runtime Compiler supportRaffi Enficiaud2018-04-234-55/+103
| | | | | | | | | | * Determining automatically the MCR version on OSX and Windows * Distinguishing between MCR and Matlab * Specific tests for the MCR * mexext on windows does not work properly: the mexext is hardcoded * Doc updates for the MCR Fixes: #16487
* FindMatlab: add unit testsRaffi Enficiaud2018-04-092-3/+43
|
* FindMatlab: adding handling of component "MAT"Raffi Enficiaud2016-08-301-0/+23
| | | | | | - documentation - test - cosmetic changes
* Revise C++ coding style using clang-formatKitware Robot2016-05-161-7/+8
| | | | | | | | | | | | | Run the `Utilities/Scripts/clang-format.bash` script to update all our C++ code to a new style defined by `.clang-format`. Use `clang-format` version 3.8. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit.
* Tests: Increasing the stability of the FindMatlab.basic_checks testRaffi Enficiaud2015-04-131-1/+1
| | | | Increase the timeout to tolerate longer network delays.
* FindMatlab: Rewrite module and provide a usage APIRaffi Enficiaud2015-03-178-0/+197
Implement a brand new FindMatlab module: - Add support for versions and components. - Find Matlab and its version in a more precise and multiplatform way. - Add API to create a new mex extension with documentation. - Add API to add matlab unit tests (with or without the unit test framework). - Find as much as possible based on a single Matlab_ROOT_DIR cache entry and allow the user to change it to re-find everything.