summaryrefslogtreecommitdiffstats
path: root/Source/cmDebuggerPipeConnection.h
Commit message (Collapse)AuthorAgeFilesLines
* Debugger: Replace libuv with platform-specific connection codePaul Maybee2023-08-171-139/+0
| | | | | | | Remove libuv usage from CMake debugger. Libuv has an async io model and cppdap uses a sync model, so an extra thread and a buffer copy were necessary to match semantics. In order to eliminate those costs this commit implements the IO using platform specific APIs.
* cmake: Add debuggerGlen Chung2023-05-301-0/+139
- Depends on cppdap and jsoncpp. - Add --debugger argument to enable the Debugger. - Add --debugger-pipe argument for DAP traffics over named pipes. - Support breakpoints by filenames and line numbers. - Support exception breakpoints. - Call stack shows filenames and line numbers. - Show Cache Variables. - Show the state of currently defined targets, tests and directories with their properties. - Add cmakeVersion to DAP initialize response. - Include unit tests. Co-authored-by: Ben McMorran <bemcmorr@microsoft.com>