-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[python] Reenable Python debugging from Visual Studio (#1768)
Move samples to lang/python folder and generate all pyproj files from CMake.
- Loading branch information
1 parent
1036657
commit e54d371
Showing
69 changed files
with
292 additions
and
1,269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == 'Release' "></Configuration> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>@ECAL_PYPROJ_GUID@</ProjectGuid> | ||
<ProjectHome>.</ProjectHome> | ||
<StartupFile>@ECAL_PYPROJ_FILE@</StartupFile> | ||
<SearchPath>@ECAL_PYPROJ_SEARCH_PATH_RELEASE@</SearchPath> | ||
<WorkingDirectory>.</WorkingDirectory> | ||
<OutputPath>.</OutputPath> | ||
<Name>@ECAL_PYPROJ_NAME@</Name> | ||
<RootNamespace>@ECAL_PYPROJ_NAME@</RootNamespace> | ||
<InterpreterId>MSBuild|debugging-env|$(MSBuildProjectFullPath)</InterpreterId> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'RelWithDebInfo' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="@ECAL_PYPROJ_FILE@" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Interpreter Include="@ECAL_PYPROJ_PYTHON_ROOT@"> | ||
<Id>debugging-env</Id> | ||
<Version>0.0</Version> | ||
<Description>eCAL Debugging Environment (Python @ECAL_PYPROJ_PYTHON_VERSION@ )</Description> | ||
<InterpreterPath>@ECAL_PYPROJ_INTERPRETER_RELEASE@</InterpreterPath> | ||
<WindowsInterpreterPath>@ECAL_PYPROJ_INTERPRETER_RELEASE@</WindowsInterpreterPath> | ||
<PathEnvironmentVariable>PYTHONPATH</PathEnvironmentVariable> | ||
<Architecture>X64</Architecture> | ||
</Interpreter> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" /> | ||
<!-- Uncomment the CoreCompile target to enable the Build command in | ||
Visual Studio and specify your pre- and post-build commands in | ||
the BeforeBuild and AfterBuild targets below. --> | ||
<!--<Target Name="CoreCompile" />--> | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
</Project> |
Oops, something went wrong.