ENH: add automation instructions

This commit is contained in:
Timothy Helton 2018-01-03 16:17:29 -07:00
parent 84c40f85d6
commit 290e15157e

View File

@ -12,11 +12,16 @@ following components:
Feel free to fork this repository and tailor it to suit you. Feel free to fork this repository and tailor it to suit you.
## Procedure ## Procedure
1. Clone the Repository 1. Download Bash script to create new C++ projects
```bash ```bash
git clone https://github.com/TimothyHelton/cpp_project_template curl -O https://raw.githubusercontent.com/TimothyHelton/cpp_project_template/master/new_cpp_project.sh
chmod u+x new_cpp_project.sh
``` ```
1. In the top level **CMakeLists.txt**: 1. Create new C++ project
```bash
./new_cpp_project.sh NewProjectName
```
1. In the project top level **CMakeLists.txt**:
1. Line 2: Change the variable **MyProject** to the name of your project. 1. Line 2: Change the variable **MyProject** to the name of your project.
```cmake ```cmake
project(NewProject) project(NewProject)