1 | <?xml version="1.0" encoding="utf-8"?> |
---|
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
---|
3 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|${MSVC_PLATFORM}'"> |
---|
4 | <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> |
---|
5 | <LocalDebuggerEnvironment>PATH=${RUNTIME_LIBRARY_DIRECTORY};%PATH%</LocalDebuggerEnvironment> |
---|
6 | <LocalDebuggerWorkingDirectory>$(Outdir)</LocalDebuggerWorkingDirectory> |
---|
7 | </PropertyGroup> |
---|
8 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RelForDevs|${MSVC_PLATFORM}'"> |
---|
9 | <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> |
---|
10 | <LocalDebuggerEnvironment>PATH=${RUNTIME_LIBRARY_DIRECTORY};%PATH%</LocalDebuggerEnvironment> |
---|
11 | <LocalDebuggerWorkingDirectory>$(Outdir)</LocalDebuggerWorkingDirectory> |
---|
12 | </PropertyGroup> |
---|
13 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|${MSVC_PLATFORM}'"> |
---|
14 | <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> |
---|
15 | <LocalDebuggerEnvironment>PATH=${RUNTIME_LIBRARY_DIRECTORY};%PATH%</LocalDebuggerEnvironment> |
---|
16 | <LocalDebuggerWorkingDirectory>$(Outdir)</LocalDebuggerWorkingDirectory> |
---|
17 | </PropertyGroup> |
---|
18 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|${MSVC_PLATFORM}'"> |
---|
19 | <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> |
---|
20 | <LocalDebuggerEnvironment>PATH=${RUNTIME_LIBRARY_DIRECTORY};%PATH%</LocalDebuggerEnvironment> |
---|
21 | <LocalDebuggerWorkingDirectory>$(Outdir)</LocalDebuggerWorkingDirectory> |
---|
22 | </PropertyGroup> |
---|
23 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|${MSVC_PLATFORM}'"> |
---|
24 | <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> |
---|
25 | <LocalDebuggerEnvironment>PATH=${RUNTIME_LIBRARY_DIRECTORY};%PATH%</LocalDebuggerEnvironment> |
---|
26 | <LocalDebuggerWorkingDirectory>$(Outdir)</LocalDebuggerWorkingDirectory> |
---|
27 | </PropertyGroup> |
---|
28 | </Project> |
---|