I&#39;m trying to get Qt integration to work in visual studio using cmake to generate the project and solution files.<br><br>So far I&#39;ve gotten part of the puzzle together using set_target_properties as described in the documentation to set the VS_KEYWORD.<br>
<br>There is another piece though, in the solution file itself in Qt integration based projects there is something like GlobalSection(Qt) as shown below. How would I go about doing this in CMake so I can once again have Qt integration working?<br>
<br>Microsoft Visual Studio Solution File, Format Version 9.00<br># Visual Studio 2005<br>Project(&quot;{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}&quot;) = &quot;test&quot;, &quot;test\test.vcproj&quot;, &quot;{6D8CFDDB-B43B-4DA1-935B-85406F4867FC}&quot;<br>
&nbsp;&nbsp;&nbsp; GlobalSection(Qt) = preSolution<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Integration = True<br>&nbsp;&nbsp;&nbsp; EndGlobalSection<br>EndProject<br>Global<br>&nbsp;&nbsp;&nbsp; GlobalSection(SolutionConfigurationPlatforms) = preSolution<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Debug|Win32 = Debug|Win32<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Release|Win32 = Release|Win32<br>&nbsp;&nbsp;&nbsp; EndGlobalSection<br>&nbsp;&nbsp;&nbsp; GlobalSection(ProjectConfigurationPlatforms) = postSolution<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {6D8CFDDB-B43B-4DA1-935B-85406F4867FC}.Debug|Win32.ActiveCfg = Debug|Win32<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {6D8CFDDB-B43B-4DA1-935B-85406F4867FC}.Debug|Win32.Build.0 = Debug|Win32<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {6D8CFDDB-B43B-4DA1-935B-85406F4867FC}.Release|Win32.ActiveCfg = Release|Win32<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {6D8CFDDB-B43B-4DA1-935B-85406F4867FC}.Release|Win32.Build.0 = Release|Win32<br>&nbsp;&nbsp;&nbsp; EndGlobalSection<br>&nbsp;&nbsp;&nbsp; GlobalSection(SolutionProperties) = preSolution<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; HideSolutionNode = FALSE<br>&nbsp;&nbsp;&nbsp; EndGlobalSection<br>EndGlobal<br><br>