<p>Hello.<br>
I have a project with a number of libraries. For a certain library i want to always build release version, whatever CMAKE_BUILD_TYPE is set to.</p>
<p>Right now I am using set(CMAKE_BUILD_TYPE Release) in CMakeLists.txt for this library. But that does not work with multiconfiguration generators like Visual Studio while fine for nmake generator.</p>
<p>What can I do here? Thanks in advance.</p>