mathworks / libmexclass

libmexclass is a MATLAB framework which enables users to implement the functionality of MATLAB classes in terms of equivalent C++ classes using MEX.
BSD 3-Clause "New" or "Revised" License
5 stars 1 forks source link

Fix compilation and linking issues when building on Windows, using MSVC. #8

Closed lafiona closed 1 year ago

lafiona commented 1 year ago
  1. Specify encoding when converting from MDA strings from MATLAB to std::string values.
  2. Export symbols on Windows to create mexclass.lib.
  3. Add default return statement to CustomProxyFactory.cpp.

Closes #7

kevingurney commented 1 year ago

Looks good! Thanks for fixing this!