https://github.com/arsdever/cpp_proj_gen
A simple C++ / CMake project generator script
https://github.com/arsdever/cpp_proj_gen
Last synced: 9 months ago
JSON representation
A simple C++ / CMake project generator script
- Host: GitHub
- URL: https://github.com/arsdever/cpp_proj_gen
- Owner: arsdever
- License: mit
- Created: 2022-02-25T19:16:05.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-25T19:54:00.000Z (over 4 years ago)
- Last Synced: 2025-01-17T13:19:59.322Z (over 1 year ago)
- Language: Shell
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# C++ project generator
This is a sample script which generates a CMake based C++ project in place. Once
triggered, it will generate the following structure and delete itself alongside
this readme file
```
╭───────────────╮
╭─┬──┤ Your folder ├─────────────────────────────╮
│ │ ╰───────────────╯ │
│ ├─> include │
│ ├─┬─> src │
│ │ └─┬─> main.cpp │
│ │ └─> CMakeLists.txt │
│ ├─┬─> test │
│ │ └─┬─> main.cpp │
│ │ └─> CMakeLists.txt │
│ ├─> CMakeLists.txt │
│ └─> LICENSE │
╰──────────────────────────────────────────────────╯
```