Profiling with CMake, C++, and Visual Studio 2012

后端 未结 2 1587
死守一世寂寞
死守一世寂寞 2021-02-08 20:05

I am using CMake 2.8.10.1 to generate project files for Visual Studio 2012 Ultimate (64-bit). The resulting solution contains a library, some tests, and some executables.

相关标签:
2条回答
  • 2021-02-08 21:02

    It seems I've found a way to fix it. You need to add win32 configuration under your project. Then profiler will see your project as launchable. For example, for the release configuration you should add the following

    <ProjectConfiguration Include="Release|Win32">
          <Configuration>Release</Configuration>
          <Platform>Win32</Platform>
    </ProjectConfiguration> 
    

    under

    <ItemGroup Label="ProjectConfigurations">
    

    Using the menu:

    • Build -> Configuration Manager
    • Goto row of the project to profile
    • In the platform column note that it will only have a x64 entry
    • Use dropdown <New...> and select Win32 for New platform:
    • -
    0 讨论(0)
  • 2021-02-08 21:10

    That's a ridiculous bug in Visual Studio. QMake also suffers from this.

    https://connect.microsoft.com/VisualStudio/feedback/details/823467/performance-wizard-doesnt-show-any-projects-to-profile-if-there-is-no-win32-configuration

    0 讨论(0)
提交回复
热议问题