Hi,<br><br>&nbsp; Is there any variable that resolves to ${CMAKE_DEBUG_POSTFIX} when in Debug build, to ${CMAKE_RELEASE_POSTFIX} when in Release build, etc.? Note:  CMAKE_BUILD_TYPE is not specified... this must be resolved&nbsp; at build-type selection in the solution (i.e., msvc). I&#39;ve searched the Cmake tree for &quot;postfix&quot;, but couldn&#39;t find this variable... (i&#39;m guessing it should be something like CMAKE_POSTFIX or CMAKE_CURRENT_POSTFIX).<br>
<br>&nbsp; The only thing I could find was this internal variable in cmTarget.cxx:<br><br>&nbsp;&nbsp;&nbsp; std::string configProp = cmSystemTools::UpperCase(config);<br>&nbsp;&nbsp;&nbsp; configProp += &quot;_POSTFIX&quot;;<br>&nbsp;&nbsp;&nbsp; configPostfix = this-&gt;GetProperty(configProp.c_str());<br>
<br><br>Thanks,<br>&nbsp;Edson<br><br>