Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xujintao/cmake-demo

a cmake demo.
https://github.com/xujintao/cmake-demo

Last synced: about 2 months ago
JSON representation

a cmake demo.

Awesome Lists containing this project

README

        

# cmake-demo

## launch.json

```
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug cmake-demo",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "${workspaceFolder}",
"internalConsoleOptions": "neverOpen",
"console": "integratedTerminal"
}
]
}
```