ghorwin / FMICodeGenerator

A Code Generator that creates native C/C++ code to build Functional Mock-Up Units (FMU) with support for FMI version 2.0 (rollback)
BSD 3-Clause "New" or "Revised" License
51 stars 25 forks source link

Rename generated FMI to <modelName>.so or <modelName>.dll #11

Closed ghorwin closed 5 years ago

ghorwin commented 5 years ago

According to specs, the FMU must be named

    <modelName>.so     # on Linux
    <modelName>.dylib  # on MacOS
    <modelName>.dll    # on Windows

The renaming can be done as part of the build or the deployment step.

Note: when developing with Qt Creator, the generated shared library files will always get a defined name.