mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Default path for starting executable from Visual Studio debugger set to be $CASROOT in project files generated by genproj Default path for starting DRAWEXE executable from Visual Studio debugger set to be CMake binary directory in project files generated by CMake
24 lines
1.2 KiB
XML
24 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|@X_COMPILER_BITNESS@'">
|
|
<LocalDebuggerEnvironment>CASROOT=@CMAKE_SOURCE_DIR@
|
|
PATH=@3RDPARTY_DLL_DIRS_FOR_PATH@;%PATH%
|
|
</LocalDebuggerEnvironment>
|
|
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
|
|
<LocalDebuggerWorkingDirectory>@CMAKE_BINARY_DIR@</LocalDebuggerWorkingDirectory>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|@X_COMPILER_BITNESS@'">
|
|
<LocalDebuggerEnvironment>CASROOT=@CMAKE_SOURCE_DIR@
|
|
PATH=@3RDPARTY_DLL_DIRS_FOR_PATH@;%PATH%
|
|
</LocalDebuggerEnvironment>
|
|
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
|
|
<LocalDebuggerWorkingDirectory>@CMAKE_BINARY_DIR@</LocalDebuggerWorkingDirectory>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|@X_COMPILER_BITNESS@'">
|
|
<LocalDebuggerEnvironment>CASROOT=@CMAKE_SOURCE_DIR@
|
|
PATH=@3RDPARTY_DLL_DIRS_FOR_PATH@;%PATH%
|
|
</LocalDebuggerEnvironment>
|
|
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
|
|
<LocalDebuggerWorkingDirectory>@CMAKE_BINARY_DIR@</LocalDebuggerWorkingDirectory>
|
|
</PropertyGroup>
|
|
</Project> |