I wanted my vcproj files to be placed in &quot;test_projects&quot;. Any idea how I can make this happen?<br><br><div class="gmail_quote">On Thu, Dec 4, 2008 at 8:30 PM, Mike Jackson <span dir="ltr">&lt;<a href="mailto:mike.jackson@bluequartz.net">mike.jackson@bluequartz.net</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">CMAKE_CURRENT_SOURCE_DIR denotes your source tree and NOT the build<br>
tree. Are you building in your source tree instead of using a<br>
dedicated build directory?<br>
<br>
To answer your code you are setting the output directory of where the<br>
executable will be placed in a directory called &quot;test_projects&quot; at the<br>
top level of your build tree.<br>
<br>
Mike Jackson<br>
<div><div></div><div class="Wj3C7c"><br>
<br>
On Thu, Dec 4, 2008 at 7:40 PM, Robert Dailey &lt;<a href="mailto:rcdailey@gmail.com">rcdailey@gmail.com</a>&gt; wrote:<br>
&gt; Hi,<br>
&gt;<br>
&gt; I&#39;m trying to use set_target_properties() to make CMake place generated<br>
&gt; vcproj files in a subdirectory of ${CMAKE_CURRENT_SOURCE_DIR}. This isn&#39;t<br>
&gt; working and I&#39;m not sure what I&#39;m doing wrong. Below is what I&#39;m doing:<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; set( test_project_name ${project_name}_test_${test_name} )<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; project( ${test_project_name} )<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; source_group( &quot;&quot; ${file} )<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; add_executable( ${test_project_name} ${file} )<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; set_target_properties( ${test_project_name} PROPERTIES<br>
&gt; OUTPUT_NAME test_projects/${test_project_name} )<br>
&gt;<br>
&gt; My project should be getting placed inside of a test_projects subdirectory,<br>
&gt; right?<br>
&gt;<br>
</div></div>&gt; _______________________________________________<br>
&gt; CMake mailing list<br>
&gt; <a href="mailto:CMake@cmake.org">CMake@cmake.org</a><br>
&gt; <a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
&gt;<br>
</blockquote></div><br>