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

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

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 │
╰──────────────────────────────────────────────────╯
```