kind "SharedLib"
language "C++"
defines "DLL_EXPORT"
targetname "read_cad_file"
targetextension ".arx"
I am developing using objectARX, and I want to compile my project using premake5 and vs2015. Some of the settings in the script is as the above. Under this setting, in properties->C/C++->Code Generation->Runtime Library, the runtime library is Multithreaded Debug(/MTd). I would like to ask how to change it to Multithreaded DLL (/MD) using premake5? Thanks a lot:)