/PROFILE
(Performance Tools Profiler)
Produces an output file that can be used with the Performance Tools profiler.
Syntax
/PROFILE
Remarks
/PROFILE implies the following linker options:
/PROFILE
is used to support the Performance Tools for Visual Studio Profiler utility VSInstr.exe
.
To set this linker option in the Visual Studio development environment
Open the project's Property Pages dialog box. For details, see Set C++ compiler and build properties in Visual Studio.
Select the Configuration Properties > Linker > Advanced property page.
Modify the Profile property.
To set this linker option programmatically
- See Profile.
To set this linker option in a Visual Studio CMake project
Because a CMake project doesn't have the usual Property Pages support, the linker option can be set by modifying the CMakeLists.txt
file.
Open the
CMakeLists.txt
file in the project root directory.Add the code below. For more information, see the CMake
set_target_properties
documentation.SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES LINK_FLAGS "/PROFILE")
Rebuild your solution.