I noticed testing tonight with CMake 2.6.0 RC9 that MODULE_LIBRARY targets (i.e. DLL plugins under Windows) are NOT copied to the RUNTIME_OUTPUT_DIRECTORY.&nbsp; Is this a bug?<br><br>I thought the impetus for the CMAKE_RUNTIME_OUTPUT_DIRECTORY feature was to get all DLLs dumped into a single directory so developers wouldn&#39;t have to concoct custom POST BUILD rules or modify PATH environment variables prior to runtime?<br>
<br><br><br>PROJECT(myfoo)<br><br>SET(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib<br>&nbsp;&nbsp;&nbsp; CACHE STRING &quot;Where libraries go&quot; FORCE)<br>SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib<br>&nbsp;&nbsp;&nbsp; CACHE STRING &quot;Where archives go&quot; FORCE)<br>
SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin<br>&nbsp;&nbsp;&nbsp; CACHE STRING &quot;Where binaries and .dll files go&quot; FORCE)<br><br>ADD_LIBRARY(foo MODULE foo.h foo.cc)<br><br><br>-- <br>Philip Lowman