Save generated code in a special folder in “rtwbuild”

前端 未结 2 1237
借酒劲吻你
借酒劲吻你 2021-01-20 04:27

I am using rtwbuild to generated C++ code from a Simulation diagrams and would like to save generated code to an arbitrary directory. Is there any way to do so?

2条回答
  •  抹茶落季
    2021-01-20 05:15

    You can control the folder for generated files in 3 different ways. You can set the "Code generation folder" option in Simulink Preferences. You can reach to Simulink preferences from any model using File menu and then choosing Simulink Preferences. This will change the code generation location for all models and will persist across MATLAB sesstions.

    Second you can set a global param in MATLAB which will again control code generation directory for all models but will persist only for that MATLAB session. For example,

    set_param(0, 'CodegenFolder', fullfile('C:','Work','mymodelrtw'))
    get_param(0, 'CodegenFolder')
    

    You can also use Simulink.fileGenControl object to set the codegen folder like the session param above. This object has more control about retaining previous folder paths and creating the folder optionally.

    See the documentation for these at http://www.mathworks.com/help/rtw/ug/control-the-location-for-generated-files.html

提交回复
热议问题