I&#39;m having an issue right now where I&#39;m trying to setup 2 projects in 1 CMakeLists.txt file. Basically what I do is:<br><br>project( p1 )<br>add_executable()<br><br>project( p2 )<br>source_group()<br>add_library()<br>
<br>For project p1, the visual studio project that is output (p1.vcproj) contains filters created by the source_group() call several lines below it. Why does this happen? Only p2 should be affected by source_group() correct?<br>