Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/xujintao/cmake-demo
- Owner: xujintao
- License: apache-2.0
- Created: 2021-08-30T00:31:12.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-04T13:13:42.000Z (over 2 years ago)
- Last Synced: 2024-05-01T07:53:20.639Z (8 months ago)
- Language: CMake
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
]
}
```