Hi,<br><br>I&#39;m trying to use set_target_properties() to make CMake place generated vcproj files in a subdirectory of ${CMAKE_CURRENT_SOURCE_DIR}. This isn&#39;t working and I&#39;m not sure what I&#39;m doing wrong. Below is what I&#39;m doing:<br>
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; set( test_project_name ${project_name}_test_${test_name} )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; project( ${test_project_name} )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; source_group( &quot;&quot; ${file} )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; add_executable( ${test_project_name} ${file} )<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; set_target_properties( ${test_project_name} PROPERTIES OUTPUT_NAME test_projects/${test_project_name} )<br><br>My project should be getting placed inside of a test_projects subdirectory, right?<br>