Hi,<br><br>I'm trying to use set_target_properties() to make CMake place generated vcproj files in a subdirectory of ${CMAKE_CURRENT_SOURCE_DIR}. This isn't working and I'm not sure what I'm doing wrong. Below is what I'm doing:<br>
<br> set( test_project_name ${project_name}_test_${test_name} )<br> project( ${test_project_name} )<br> source_group( "" ${file} )<br> add_executable( ${test_project_name} ${file} )<br>
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>